Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions src/pages/get-started/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -944,28 +944,28 @@ function GetStartedContent() {
viewport={{ once: true, margin: "-50px 0px -50px 0px" }}
transition={{ duration: 0.5, delay: 0.3 }}
>
<Link
to="/courses"
className="group inline-flex items-center px-8 py-4 bg-gradient-to-r from-blue-200 to-blue-300 text-gray-900 font-semibold text-lg rounded-xl hover:from-blue-300 hover:to-blue-400 transition-all duration-300 shadow-lg hover:shadow-xl hover:-translate-y-1"
style={{
textShadow: "0 2px 4px rgba(0, 0, 0, 0.2)",
}}
>
<span className="relative z-10">Explore All Paths</span>
<svg
className="w-6 h-6 ml-3 transform group-hover:translate-x-1 transition-transform duration-300"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2.5}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M14 5l7 7m0 0l-7 7m7-7H3"
/>
</svg>
</Link>
<Link
to="/courses"
className="group inline-flex items-center px-8 py-4 bg-gradient-to-r from-blue-200 to-blue-300 font-semibold text-lg rounded-xl hover:from-blue-300 hover:to-blue-400 transition-all duration-300 shadow-lg hover:shadow-xl hover:-translate-y-1 hover:no-underline"
style={{
textShadow: "0 2px 4px rgba(0, 0, 0, 0.2)",
}}
>
<span className="relative z-10 text-gray-900 group-hover:text-gray-900">Explore All Paths</span>
<svg
className="w-6 h-6 ml-3 transform text-gray-900 group-hover:translate-x-1 group-hover:text-gray-900 transition-transform duration-300"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2.5}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M14 5l7 7m0 0l-7 7m7-7H3"
/>
</svg>
</Link>
</motion.div>
</div>
</section>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/terms-service/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const TermsOfService: React.FC = () => {
</h2>
<p className="mb-6">
These Terms of Service govern your use of{" "}
<b className="bg-yellow-100">recodehive</b>, provided by{" "}
<strong className="bg-yellow-100">Sanjay Viswanathan</strong>. Below are the Terms and Conditions for the use of www.recodehive.com.
<b className="bg-yellow-100 dark:bg-yellow-600 dark:text-gray-900">recodehive</b>, provided by{" "}
<strong className="bg-yellow-100 dark:bg-yellow-600 dark:text-gray-900">Sanjay Viswanathan</strong>. Below are the Terms and Conditions for the use of www.recodehive.com.
Please read these carefully. If you need to contact us regarding any aspect of the following terms of use of our website,
please reach out us at the following email address – [email protected].
</p>
Expand Down Expand Up @@ -56,7 +56,7 @@ const TermsOfService: React.FC = () => {
<strong>Intellectual Property:</strong> All content, trademarks,
service marks, logos, and other intellectual property displayed on
or related to the Service are the property of{" "}
<strong className="bg-yellow-100">Sanjay Viswanathan</strong> or its
<strong className="bg-yellow-100 dark:bg-yellow-600 dark:text-gray-900">Sanjay Viswanathan</strong> or its
licensors. You may not use or display any of these without our prior
written consent.
</li>
Expand Down
Loading