diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03aac46..d84c7a6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "Webild Design - Award-Winning Digital Design Agency", description: - "Transform your brand with exceptional web design and development services. We create stunning digital experiences that drive engagement and results."}; + title: "Webild Design - Award-Winning Digital Design Agency", description: "Transform your brand with exceptional web design, development, and digital strategy. Award-winning agency specializing in stunning user experiences."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - {children} - + + {children} - ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 97e3d4f..2b7c998 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,8 +9,8 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Sparkles, Award, Star, Zap, Heart, HelpCircle, Lightbulb } from "lucide-react"; import Link from "next/link"; @@ -193,27 +193,27 @@ export default function HomePage() {
-
); -} \ No newline at end of file +}