diff --git a/src/app/page.tsx b/src/app/page.tsx index 2f88c1d..5ba52e1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,11 @@ import { EventCountdownBanner } from "@/components/EventCountdownBanner"; +import { SeekingSponsorsSection } from "@/components/SeekingSponsorsSection"; export default function Home() { return (
+
); } diff --git a/src/components/CountdownTimer/index.tsx b/src/components/CountdownTimer/index.tsx deleted file mode 100644 index 596c20c..0000000 --- a/src/components/CountdownTimer/index.tsx +++ /dev/null @@ -1,78 +0,0 @@ -"use client"; - -import { useCountdownTimer } from "./useCountdownTimer"; - -export function CountdownTimer() { - const { timeLeft } = useCountdownTimer(); - - return ( -
-
-
-
- - Days - - -
- -
- - Hour - - -
- -
- - Minutes - - -
- -
- - Seconds - - -
-
-
-
- ); -} diff --git a/src/components/EventCountdownBanner/CountdownTimer/Divider/index.tsx b/src/components/EventCountdownBanner/CountdownTimer/Divider/index.tsx new file mode 100644 index 0000000..3f9ccd6 --- /dev/null +++ b/src/components/EventCountdownBanner/CountdownTimer/Divider/index.tsx @@ -0,0 +1,8 @@ +export function Divider() { + return ( +