diff --git a/public/images/erectile-dysfunction.png b/public/images/erectile-dysfunction.png new file mode 100644 index 0000000..dc73b54 Binary files /dev/null and b/public/images/erectile-dysfunction.png differ diff --git a/public/images/hair-loss.png b/public/images/hair-loss.png new file mode 100644 index 0000000..6d0c491 Binary files /dev/null and b/public/images/hair-loss.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 2c83646..ac3e7c8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,21 +1,25 @@ -import Image from "next/image"; import { Button } from "@/components/ui/button"; -import { Logo } from "@/components/ui/logo"; +import { FacebookLogo } from "@/components/ui/logos/facebook-logo"; +import { GoogleLogo } from "@/components/ui/logos/google-logo"; +import { ManualLogo } from "@/components/ui/logos/manual-logo"; +import { TwitterLogo } from "@/components/ui/logos/twitter-logo"; +import Image from "next/image"; export default function Home() { return (
+ {/* Hero */}
Manual - +
-

+

Be good
to yourself -

+

We’re working around the clock to bring you a holistic approach to your wellness. From top to bottom, inside and out. @@ -27,7 +31,7 @@ export default function Home() {

Hero Logo
-
-

What we can help with

-

Hair loss

-
- Hair loss needn’t be irreversible. We can help! -
-

- We’re working around the clock to bring you a holistic approach to - your wellness. From top to bottom, inside and out. -

+ {/* Treatments */} +
+

+ What we can help with +

+
+
+ Hair loss + + 01 + +
+
+

+ Hair loss +

+

+ Hair loss needn’t be irreversible. We can help! +

+

+ We’re working around the clock to bring you a holistic + approach to your wellness. From top to bottom, inside and out. +

+
+
+
+
+ + 02 + +
+
+

+ Erectile dysfunction +

+

+ Erections can be a tricky thing. But no need to feel down! +

+

+ We’re working around the clock to bring you a holistic + approach to your wellness. From top to bottom, inside and out. +

+
+
+ Erectile dysfunction +
+
+
); } + +const footerNavigation = { + product: [ + { name: "Popular", href: "#" }, + { name: "Trending", href: "#" }, + { name: "Guided", href: "#" }, + { name: "Products", href: "#" }, + ], + company: [ + { name: "Press", href: "#" }, + { name: "Mission", href: "#" }, + { name: "Strategy", href: "#" }, + { name: "About", href: "#" }, + ], + info: [ + { name: "Support", href: "#" }, + { name: "Customer Service", href: "#" }, + { name: "Get started", href: "#" }, + ], +}; + +function Footer() { + return ( + + ); +} diff --git a/src/components/ui/logos/facebook-logo.tsx b/src/components/ui/logos/facebook-logo.tsx new file mode 100644 index 0000000..cbd1730 --- /dev/null +++ b/src/components/ui/logos/facebook-logo.tsx @@ -0,0 +1,21 @@ +type FacebookLogoProps = { + size?: number; + className: string; +}; + +export function FacebookLogo({ size = 24, className }: FacebookLogoProps) { + return ( + + + + ); +} diff --git a/src/components/ui/logos/google-logo.tsx b/src/components/ui/logos/google-logo.tsx new file mode 100644 index 0000000..e6a95dc --- /dev/null +++ b/src/components/ui/logos/google-logo.tsx @@ -0,0 +1,21 @@ +type GoogleLogoProps = { + size?: number; + className: string; +}; + +export function GoogleLogo({ size = 24, className }: GoogleLogoProps) { + return ( + + + + ); +} diff --git a/src/components/ui/logo.tsx b/src/components/ui/logos/manual-logo.tsx similarity index 78% rename from src/components/ui/logo.tsx rename to src/components/ui/logos/manual-logo.tsx index eb30ff7..5d6e9b3 100644 --- a/src/components/ui/logo.tsx +++ b/src/components/ui/logos/manual-logo.tsx @@ -1,14 +1,22 @@ -type LogoProps = { +type ManualLogoProps = { size?: number; - color?: string; + className?: string; }; -// TODO: Import the brand colour from the tailwind theme -export function Logo({ size = 40, color = "#0B3B3C" }: LogoProps) { +export function ManualLogo({ + size = 40, + className = "text-brand", +}: ManualLogoProps) { return ( - + + + + ); +}