From d0082781e8fd0f8850ca6ec0cf9e836cd3768a99 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 19:05:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"] }); -- 2.49.1 From 8b3052e08a47f771c118d042997b1af7e3a6d314 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 19:05:15 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 101 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 85 insertions(+), 16 deletions(-) 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` }))} +
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1