8 Commits

Author SHA1 Message Date
9d769e5f29 Update src/app/page.tsx 2026-03-06 09:05:29 +00:00
80ae905b52 Update src/app/layout.tsx 2026-03-06 09:05:28 +00:00
0e7f45c65a Merge version_2 into main
Merge version_2 into main
2026-03-06 09:01:27 +00:00
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 38 additions and 92 deletions

View File

@@ -1,74 +1,21 @@
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: "WebsForge - 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 +1383,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 (
@@ -31,14 +31,14 @@ export default function HomePage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "about" }
{ name: "Home", id: "/" },
{ name: "Services", id: "#services" },
{ name: "Portfolio", id: "#portfolio" },
{ name: "Pricing", id: "#pricing" },
{ name: "About", id: "#about" }
]}
button={{ text: "Get Started", href: "contact" }}
brandName="Webuild"
button={{ text: "Get Started", href: "#contact" }}
brandName="WebsForge"
/>
</div>
@@ -47,15 +47,15 @@ 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"
imagePosition="right"
buttons={[
{ text: "Start Your Website", href: "/contact" },
{ text: "See Our Work", href: "/portfolio" }
{ text: "Start Your Website", href: "#contact" },
{ text: "See Our Work", href: "#portfolio" }
]}
buttonAnimation="slide-up"
testimonials={[
@@ -198,8 +198,8 @@ export default function HomePage() {
{
id: "starter", badge: "Starter", badgeIcon: Zap,
price: "$1,999", subtitle: "Perfect for getting started online", buttons: [
{ text: "Choose Plan", href: "/contact" },
{ text: "Learn More", href: "/services" }
{ text: "Choose Plan", href: "#contact" },
{ text: "Learn More", href: "#services" }
],
features: [
"Up to 5 pages", "Mobile responsive design", "Contact form", "Google Maps integration", "Basic SEO optimization", "3 months of email support"
@@ -208,8 +208,8 @@ export default function HomePage() {
{
id: "professional", badge: "Professional", badgeIcon: Star,
price: "$3,999", subtitle: "Best for growing businesses", buttons: [
{ text: "Choose Plan", href: "/contact" },
{ text: "Learn More", href: "/services" }
{ text: "Choose Plan", href: "#contact" },
{ text: "Learn More", href: "#services" }
],
features: [
"Up to 15 pages", "Advanced mobile optimization", "Online booking/reservations", "Email marketing integration", "Advanced SEO & analytics", "6 months of support", "Monthly updates included"
@@ -218,8 +218,8 @@ export default function HomePage() {
{
id: "enterprise", badge: "Enterprise", badgeIcon: Award,
price: "$7,999", subtitle: "For ambitious businesses", buttons: [
{ text: "Choose Plan", href: "/contact" },
{ text: "Learn More", href: "/services" }
{ text: "Choose Plan", href: "#contact" },
{ text: "Learn More", href: "#services" }
],
features: [
"Unlimited pages", "Custom design & features", "E-commerce integration", "CRM integration", "Advanced security", "Priority 24/7 support", "Monthly optimization & reporting", "Training & documentation"
@@ -270,8 +270,8 @@ export default function HomePage() {
text="Ready to bring your business online and start attracting more customers? Let's build your professional website today."
animationType="entrance-slide"
buttons={[
{ text: "Start Your Website Now", href: "/contact" },
{ text: "Schedule a Consultation", href: "/contact" }
{ text: "Start Your Website Now", href: "#contact" },
{ text: "Schedule a Consultation", href: "#contact" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -286,18 +286,18 @@ export default function HomePage() {
columns={[
{
title: "Services", items: [
{ label: "Restaurant Websites", href: "/services" },
{ label: "Hotel & Hospitality", href: "/services" },
{ label: "Medical & Clinics", href: "/services" },
{ label: "Service Contractors", href: "/services" }
{ label: "Restaurant Websites", href: "#services" },
{ label: "Hotel & Hospitality", href: "#services" },
{ label: "Medical & Clinics", href: "#services" },
{ label: "Service Contractors", href: "#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Pricing", href: "/pricing" },
{ label: "Contact", href: "/contact" }
{ label: "About Us", href: "#about" },
{ label: "Portfolio", href: "#portfolio" },
{ label: "Pricing", href: "#pricing" },
{ label: "Contact", href: "#contact" }
]
},
{
@@ -309,10 +309,10 @@ export default function HomePage() {
]
}
]}
logoText="Webuild"
copyrightText="© 2025 Webuild. All rights reserved."
logoText="WebsForge"
copyrightText="© 2025 WebsForge. All rights reserved."
/>
</div>
</ThemeProvider>
);
}
}