diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a084f70..08efc31 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { DM_Serif_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Home', - description: 'Welcome to our website', + title: 'Home | Webild', + description: 'Next-generation digital solutions for modern businesses.', }; const dmSerif = DM_Serif_Display({ variable: "--font-dm-serif", subsets: ["latin"], weight: ["400"] }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); diff --git a/src/app/page.tsx b/src/app/page.tsx index e5e3de9..1d92936 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,44 +11,113 @@ import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } +]; + export default function HomePage() { - const navItems = [{ name: "Home", id: "/" }]; return ( - +
- ({ id: `h${i}`, imageSrc: `https://picsum.photos/seed/${i}/800/600` }))} +
- +
- +
- +
- +
- +
- +
- +
);