diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 434507d..d28143e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,74 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Web Design for Local Businesses | Professional Websites That Convert",
- description: "We build fast, professional websites for restaurants, hotels, clinics, and service businesses. Get more customers online with our proven web design solutions.",
- keywords: "web design, website design, local business websites, restaurant website, hotel website, clinic website, web development, professional website builder",
- metadataBase: new URL("https://webuild.com"),
- alternates: {
- canonical: "https://webuild.com"
- },
- openGraph: {
- title: "Professional Website Design for Local Businesses",
- description: "Build your online presence with modern, fast websites designed for restaurants, hotels, clinics, and service companies.",
- url: "https://webuild.com",
- siteName: "Webuild",
- type: "website",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ4zxmNcqiWsl4H9fXTecVOmEs/modern-professional-website-dashboard-in-1772787114900-2a89b41f.png",
- alt: "Professional website showcase"
- }
- ]
- },
- twitter: {
- card: "summary_large_image",
- title: "Professional Website Design for Local Businesses",
- description: "Modern websites that bring customers to your door. Restaurants, hotels, clinics, services.",
- images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ4zxmNcqiWsl4H9fXTecVOmEs/modern-professional-website-dashboard-in-1772787114900-2a89b41f.png"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Webuild - Professional Websites for Local Businesses", description: "Modern, fast websites built for restaurants, hotels, clinics, and service companies. Get more customers online."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ccfdb7d..37769bd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,7 +11,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa
import ContactText from "@/components/sections/contact/ContactText";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import Link from "next/link";
-import { Zap, Target, Briefcase, Image, DollarSign, MessageCircle, Users, FileText, MapPin, Calendar, Shield, Clock, Award, MessageSquare, Check, Star } from "lucide-react";
+import { Zap, Target, Briefcase, Image, DollarSign, MessageCircle, Users, FileText, MapPin, Calendar, Shield, Clock, Award, MessageSquare, Check, Star, TrendingUp } from "lucide-react";
export default function HomePage() {
return (
@@ -47,8 +47,8 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}