Skip to content
Open
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
4 changes: 2 additions & 2 deletions apps/web/components/privacy-policy/privacy-policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const privacyPolicyContent = [
{
id: 6,
description:
'You means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. Company (referred to as either “the Company”, “We”, “Us” or “Our” in this Agreement) refers to harkirat.classx.co.in.',
'You means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. Company (referred to as either “the Company”, “We”, “Us” or “Our” in this Agreement) refers to 100xdevs.com.',
},
{
id: 7,
Expand All @@ -36,7 +36,7 @@ export const privacyPolicyContent = [
{
id: 8,
description:
'Website refers to harkirat.classx.co.in, accessible fromharkirat.classx.co.in Service refers to the Website. Country refers to: Uttar Pradesh, India Service Provider means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used. Third-party Social Media Service refers to any website or any social network website through which a User can log in or create an account to use the Service.',
'Website refers to 100xdevs.com, accessible from100xdevs.com Service refers to the Website. Country refers to: Uttar Pradesh, India Service Provider means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used. Third-party Social Media Service refers to any website or any social network website through which a User can log in or create an account to use the Service.',
},
{
id: 9,
Expand Down
30 changes: 2 additions & 28 deletions apps/web/screens/footer-cta.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
"use client";
import { Button } from "@repo/ui";
import { Download, Sparkles } from "lucide-react";
import { Sparkles } from "lucide-react";
import Link from "next/link";
import Mockup from "../public/Mockup.png";
import { motion } from "framer-motion";
import Image from "next/image";

const FooterCTA = () => {
const floatingAnimation = {
y: [0, -10, 0],
transition: {
duration: 3,
ease: "easeInOut",
repeat: Infinity,
},
};
return (
<div className="wrapper group">
<div className="relative flex flex-col md:flex-col h-[75vh] md:h-[45vh] w-full rounded-3xl bg-gradient-to-b from-blue-400 to-blue-700 p-8 overflow-hidden">
Expand All @@ -30,29 +19,14 @@ const FooterCTA = () => {
</p>
</div>
<div className="flex gap-2 flex-col md:flex-row">
<Link href={"https://play.google.com/store/apps/details?id=com.hundredx.devs"} target="_blank">
<Button size={"lg"} variant={"default"} className="w-fit flex items-center gap-2">
<Download className="size-4" />
Download Our App!
</Button>
</Link>
<Link href={"https://harkirat.classx.co.in/new-courses"} target="_blank">
<Link href={"https://100xdevs.com/new-courses"} target="_blank">
<Button size={"lg"} variant={"secondary"} className="w-fit flex items-center gap-2">
<Sparkles className="size-4" />
Join Now!
</Button>
</Link>
</div>
</div>
<Link href={"https://play.google.com/store/apps/details?id=com.hundredx.devs"} target="_blank">
<motion.div animate={floatingAnimation} className="absolute md:right-6 md:top-12 w-full justify-end mx-auto">
<Image
src={Mockup}
alt="Mockup"
className="absolute md:right-6 w-[80%] md:w-[30%] group-hover:-translate-y-4 group-hover:rotate-6 rotate-3 transition-all duration-300"
/>
</motion.div>
</Link>
</div>
</div>
);
Expand Down
Loading