5 Commits

Author SHA1 Message Date
73262bfd37 Update src/app/page.tsx 2026-03-06 09:01:23 +00:00
26bd8d699d Update src/app/layout.tsx 2026-03-06 09:01:23 +00:00
aab94dd22d Merge version_1 into main
Merge version_1 into main
2026-03-06 08:58:37 +00:00
ab76b1d02a Merge version_1 into main
Merge version_1 into main
2026-03-06 08:57:45 +00:00
159ba475f6 Merge version_1 into main
Merge version_1 into main
2026-03-06 08:55:29 +00:00
2 changed files with 11 additions and 66 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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() {
<HeroSplitTestimonial
title="Modern Websites That Bring Customers to Your Door"
description="We build fast, professional websites designed specifically for local businesses like restaurants, hotels, clinics, and service companies. Get more customers online."
tag="Web Development Agency"
tagIcon={Zap}
tag="50+ Websites Built for Local Businesses"
tagIcon={TrendingUp}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ4zxmNcqiWsl4H9fXTecVOmEs/modern-professional-website-dashboard-in-1772787114900-2a89b41f.png"
imageAlt="Professional website showcase"
mediaAnimation="slide-up"
@@ -315,4 +315,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}