Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-03 18:59:34 +00:00
2 changed files with 11 additions and 42 deletions

View File

@@ -1,47 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", keywords: "web design, website design, custom web design, agency, web development", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", type: "website", siteName: "Webuild"},
};
title: "Webuild - Web Design Agency", description: "Transform your business with stunning, high-performing websites that convert. Web design services for businesses nationwide."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -184,7 +184,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Client Success Stories"
description="Hear from business owners across the nation who've transformed their business with our web design services"
description="Hear from business owners across the nation who have transformed their business with our web design services"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
@@ -195,7 +195,7 @@ export default function LandingPage() {
id: "2", title: "Professional Design, Exceptional Support", quote: "From concept to launch, the entire process was seamless. The design team understood our brand vision perfectly and delivered a website that exceeded our expectations.", name: "Michael Torres", role: "Founder, Digital Agency Pro", imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-business-leader-window_1262-5674.jpg", imageAlt: "ceo executive portrait business"
},
{
id: "3", title: "Best Investment for Our Business", quote: "This wasn't just a web design project—it was a strategic partnership. They helped us think through our entire digital presence and delivered results that keep impressing us.", name: "Jessica Liu", role: "Managing Director, Growth Consulting", imageSrc: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg", imageAlt: "entrepreneur business owner portrait professional"
id: "3", title: "Best Investment for Our Business", quote: "This was not just a web design project—it was a strategic partnership. They helped us think through our entire digital presence and delivered results that keep impressing us.", name: "Jessica Liu", role: "Managing Director, Growth Consulting", imageSrc: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg", imageAlt: "entrepreneur business owner portrait professional"
},
{
id: "4", title: "Professional, Creative, Results-Driven", quote: "Our website went from outdated to industry-leading. The attention to detail, responsive design, and ongoing support have made a huge difference in our customer acquisition.", name: "David Chen", role: "Owner, Premium Services Inc.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg", imageAlt: "manager professional portrait business"
@@ -204,7 +204,7 @@ export default function LandingPage() {
id: "5", title: "Transformed Our Online Presence", quote: "We wanted a partner who understood our brand and could deliver excellence. They did exactly that. Our website has become our best marketing tool.", name: "Amanda Rodriguez", role: "VP Marketing, Enterprise Solutions", imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "director executive portrait professional"
},
{
id: "6", title: "Exceeded Every Expectation", quote: "We were skeptical about hiring a design agency, but this team proved why they're the best in the industry. Fast delivery, beautiful design, and authentic partnership throughout.", name: "Robert Thompson", role: "President, Thompson & Associates", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "founder business owner portrait headshot"
id: "6", title: "Exceeded Every Expectation", quote: "We were skeptical about hiring a design agency, but this team proved why they are the best in the industry. Fast delivery, beautiful design, and authentic partnership throughout.", name: "Robert Thompson", role: "President, Thompson & Associates", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "founder business owner portrait headshot"
}
]}
/>
@@ -219,7 +219,7 @@ export default function LandingPage() {
useInvertedBackground={false}
buttonText="Schedule Call"
inputPlaceholder="your@email.com"
termsText="By scheduling, you agree to our Terms of Service. We'll contact you within 24 hours."
termsText="By scheduling, you agree to our Terms of Service. We will contact you within 24 hours."
/>
</div>
@@ -256,4 +256,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}