-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
111 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 8 additions & 21 deletions
29
apps/www/src/components/landing/bottom-section-landing.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,23 @@ | ||
"use client"; | ||
"use client" | ||
|
||
import { useRef } from "react"; | ||
import { ArrowRightIcon } from "@radix-ui/react-icons"; | ||
import { useInView } from "framer-motion"; | ||
import { FileInputIcon } from "lucide-react"; | ||
import { useRef } from "react" | ||
import { useInView } from "framer-motion" | ||
|
||
import { Button } from "@dingify/ui/components/button"; | ||
import { | ||
Command, | ||
CommandEmpty, | ||
CommandGroup, | ||
CommandInput, | ||
CommandItem, | ||
CommandList, | ||
} from "@dingify/ui/components/command"; | ||
|
||
import { GetStartedButton } from "../buttons/GetStartedButton"; | ||
import { BentoCard } from "../ui/bento-grid"; | ||
import { GetStartedButton } from "../buttons/GetStartedButton" | ||
|
||
export default function BottomSectionLanding() { | ||
const ref = useRef(null); | ||
const inView = useInView(ref, { once: true, margin: "-100px" }); | ||
const ref = useRef(null) | ||
const inView = useInView(ref, { once: true, margin: "-100px" }) | ||
|
||
return ( | ||
<section className="relative mx-auto -mt-20 mb-20 max-w-[80rem] px-6 text-center md:px-8"> | ||
<h2 className="translate-y-[-1rem] animate-fade-in text-balance bg-gradient-to-br from-black from-30% to-black/40 bg-clip-text py-6 text-5xl font-medium leading-none tracking-tighter text-transparent opacity-0 [--animation-delay:200ms] dark:from-white dark:to-white/40 sm:text-6xl md:text-7xl lg:text-8xl"> | ||
Built for developers | ||
Prøv Propdock | ||
<br className="hidden md:block" /> Available today. | ||
</h2> | ||
<div className="mt-10 space-x-4"> | ||
<GetStartedButton /> | ||
</div> | ||
</section> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.