From 29a317ccda5a2e0a563b257de6e5485dd8d9be04 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 01:30:23 +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 f951c9c..1df7885 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: 'Webild Platform', - description: 'Leading innovation and scalable solutions.', + title: 'Webild - Build Fast, Deploy Faster', + description: 'The ultimate platform for modern web development.', openGraph: { "title": "Ironwood Queue System", "description": "نظام قائمة انتظار متطور للمطاعم.", -- 2.49.1 From 80f17b203ab08f8092ef5a7eac37ff53008f5ba4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 01:30:24 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 78 ++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 62 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2d1f1ea..f19d592 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,43 +9,89 @@ 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 { Zap, CheckCircle } from 'lucide-react'; +import { ArrowRight, Star, Shield, Zap } from 'lucide-react'; +import Link from 'next/link'; -export default function HomePage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } - ]; +const navItems = [{ name: "Home", id: "/" }]; +export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1