Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-03-04 16:38:10 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Webild - Web Design & IT Services for Small Business", description: "Expert web design, development, and IT support for small businesses. Transform your digital presence with Webild.", keywords: "web design, web development, IT support, small business websites, digital strategy", openGraph: {
title: "Webild - Web Design & IT Solutions", description: "Professional web design and IT services tailored for small businesses.", type: "website", siteName: "Webild", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png", alt: "Webild web design services"},
],
},
twitter: {
card: "summary_large_image", title: "Webild - Web Design & IT Services", description: "Transform your digital presence with expert web design and IT support", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "Webild - Web Design & IT Services", description: "Expert web design and IT solutions for small businesses"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -184,7 +184,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
tag="Get Started"
title="Ready to Elevate Your Digital Presence?"
title="Schedule Your Free Web Strategy Session Today"
description="Let's discuss your project. Whether you need a stunning new website or IT support, we're here to help your business succeed."
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}