From 4009d2b02d2a6d74c648fe75b6b7c4efac948d6d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:56:02 +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 430c489..3811b14 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: 'Webild - Innovation at Scale', - description: 'Empowering businesses with cutting-edge technology solutions.', + title: 'Home | Webild', + description: 'Innovation at the speed of light.', }; 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 7b79f2f4237c4866c3aae2b8eea3ee5f5cfa9c67 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:56:03 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 89 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 76 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3861053..fe49de7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,4 @@ -"use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; @@ -12,37 +11,101 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Work", id: "/work" }, + { name: "Contact", id: "/contact" } + ]; + return ( - +
- ({id: i.toString(), imageSrc: "https://picsum.photos/800/600?random=" + i}))} /> +
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1