From 7d7973e34ad8b8638e39c921f58ab17da8e44a3d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 01:21:33 +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 d259e1e..f951c9c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Source_Sans_3 } from "next/font/google"; export const metadata: Metadata = { - title: 'Ironwood | نظام إدارة قائمة الانتظار الذكي', - description: 'انضم إلى قائمة الانتظار في Ironwood بكل سهولة واستمتع بوقتك بينما نجهز طاولتك.', + title: 'Webild Platform', + description: 'Leading innovation and scalable solutions.', openGraph: { "title": "Ironwood Queue System", "description": "نظام قائمة انتظار متطور للمطاعم.", -- 2.49.1 From 6d8b1ffc9b6b70ec43eeb209b9ae185523d3a7e8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 01:21:34 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 167 ++++++++++------------------------------------- 1 file changed, 35 insertions(+), 132 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b69ddc1..aa15a8b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,4 @@ -"use client"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; @@ -11,138 +9,43 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Users, Clock, Coffee } from 'lucide-react'; - -const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"] }); +import { Shield, ArrowRight, Star, Zap, CheckCircle } from 'lucide-react'; export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - -
- -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -- 2.49.1