From 056d43f3e12d7a39d28129e0b4bb0a37249b922c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 04:44:43 +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 0bc78e6..f5d7acf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Foxy Cafe | Madinat Zayed', - description: 'Specialty coffee and honest food in the heart of Madinat Zayed.', + title: 'Webild Platform', + description: 'Innovating the future of digital experiences.', openGraph: { "title": "Foxy Cafe", "siteName": "Foxy Cafe", -- 2.49.1 From 673b81fcf7be83760d51d0a80c40ff619385ac83 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 04:44:44 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 253 +++++++++++++++++------------------------------ 1 file changed, 90 insertions(+), 163 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a6d7543..07b3f00 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,8 +1,5 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import { Coffee, Users, Utensils } from "lucide-react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import AboutMetric from '@/components/sections/about/AboutMetric'; @@ -12,167 +9,97 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Shield, Zap, Target, Star } from 'lucide-react'; +import Link from 'next/link'; + +export default function HomePage() { + const navItems = [{ name: "Home", id: "/" }]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1