From 69906fa88410090897a8b1ea010768a6395d87c8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 22:27:57 +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 2466e9c..517d658 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: 'DEL Herren Friseur | Barber Shop Wien Donaustadt', - description: 'Ihr Premium Barber Shop in der Erzherzog-Karl-Straße 60, 1220 Wien. Exzellente Herrenhaarschnitte, Bartpflege und Nassrasur vom Profi.', + title: 'Webild Platform', + description: 'Professional business platform.', openGraph: { "siteName": "DEL Herren Friseur" }, -- 2.49.1 From 21f160bbc43ae695f036178355b2cf36878c6319 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 22:27:58 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 100 ++++++++--------------------------------------- 1 file changed, 17 insertions(+), 83 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7510e36..0c3363b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,105 +7,39 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { ArrowRight, Star, Shield, Mail, Phone, MapPin } from 'lucide-react'; export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "Contact", id: "/contact" }, + ]; return ( - +
- +
- +
- +
- +
- +
); -} +} \ No newline at end of file -- 2.49.1