Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-03 21:37:53 +00:00
2 changed files with 10 additions and 49 deletions

View File

@@ -1,55 +1,17 @@
import type { Metadata } from "next";
import { Figtree } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Webild - Creative Web Agency | Award-Winning Design & Strategy", description: "Transform your brand with Webild, an award-winning creative agency specializing in digital strategy, design, and web development. 200+ successful projects.", keywords: "creative agency, web design, digital strategy, branding, UX/UI design, web development", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Webild - Creative Web Agency | Award-Winning Design & Strategy", description: "Transform your brand with strategic creativity and cutting-edge design. Discover how we deliver measurable results.", url: "https://webild.io", siteName: "Webild", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS2qznHM8QaLEgXCvvp46EdPRu/a-modern-creative-agency-website-interfa-1772571957955-c076be65.png", alt: "Webild Creative Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Webild - Creative Web Agency", description: "Award-winning agency delivering creative solutions that transform brands", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS2qznHM8QaLEgXCvvp46EdPRu/a-modern-creative-agency-website-interfa-1772571957955-c076be65.png"],
},
};
title: "Webild - Creative Solutions for Your Brand", description: "Award-winning creative agency delivering innovative digital experiences that transform brands and drive engagement."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -35,7 +35,7 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
button={{ text: "Get Started", href: "https://example.com/get-started" }}
animateOnLoad={true}
/>
</div>
@@ -60,7 +60,7 @@ export default function LandingPage() {
imagePosition="right"
buttons={[
{ text: "View Our Work", href: "#portfolio" },
{ text: "Schedule Consultation", href: "#contact" }
{ text: "Schedule Consultation", href: "https://example.com/consultation" }
]}
buttonAnimation="slide-up"
/>
@@ -227,8 +227,8 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Start Your Project", href: "#" },
{ text: "Schedule Consultation", href: "#" }
{ text: "Start Your Project", href: "https://example.com/start-project" },
{ text: "Schedule Consultation", href: "https://example.com/consultation" }
]}
/>
</div>