Merge version_3 into main #5
@@ -5,7 +5,8 @@ import "./globals.css";
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webuild - Professional Websites for Local Businesses", description: "Modern, fast websites built for restaurants, hotels, clinics, and service companies. Get more customers online."};
|
||||
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,
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -54,8 +54,8 @@ export default function HomePage() {
|
||||
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,8 +309,8 @@ export default function HomePage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Webuild"
|
||||
copyrightText="© 2025 Webuild. All rights reserved."
|
||||
logoText="WebsForge"
|
||||
copyrightText="© 2025 WebsForge. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user