7 Commits

Author SHA1 Message Date
728326baed Update src/app/page.tsx 2026-03-09 16:45:05 +00:00
ffbb6cb87e Update src/app/layout.tsx 2026-03-09 16:45:05 +00:00
8269694864 Merge version_2 into main
Merge version_2 into main
2026-03-09 16:42:21 +00:00
ccd8cf0d03 Update src/app/page.tsx 2026-03-09 16:42:17 +00:00
909691cd8c Update src/app/layout.tsx 2026-03-09 16:42:16 +00:00
6d7c4d4177 Merge version_1 into main
Merge version_1 into main
2026-03-09 16:34:43 +00:00
6d79a5739a Merge version_1 into main
Merge version_1 into main
2026-03-09 16:33:10 +00:00
2 changed files with 9 additions and 47 deletions

View File

@@ -1,58 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Compass Digital - AI-Powered Web Design & Facebook Ads Management", description: "Transform your business with AI-powered digital marketing. Custom web design and Facebook ads management that delivers 340% average ROI. Get started with Compass Digital today.", keywords: "web design, Facebook ads management, digital marketing, AI marketing, social media marketing, digital agency, marketing automation", metadataBase: new URL("https://compassdigital.com"),
alternates: {
canonical: "https://compassdigital.com"},
openGraph: {
title: "Compass Digital - AI-Powered Digital Marketing", description: "Custom web design and AI-optimized Facebook ads that drive real business results. Average client ROI increase: 340%.", url: "https://compassdigital.com", siteName: "Compass Digital", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiSESCNQfcrhUJEDvjmlzxoy6E/a-sleek-modern-ai-powered-digital-market-1773073860626-25db3da6.png", alt: "Compass Digital AI Marketing Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "Compass Digital - AI-Powered Digital Marketing", description: "Transform your business with custom web design and intelligent Facebook ads management.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiSESCNQfcrhUJEDvjmlzxoy6E/a-sleek-modern-ai-powered-digital-market-1773073860626-25db3da6.png"],
},
robots: {
index: true,
follow: true,
},
title: "Compass Digital - AI-Powered Digital Marketing & Web Design", description: "Transform your business with AI-powered digital marketing and custom web design. We deliver proven results with intelligent marketing automation."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -217,7 +217,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to transform your digital presence? Let's discuss how AI-powered marketing and custom web design can accelerate your business growth. Schedule your free consultation with our team today."
text="Ready to transform your business? Schedule your free AI marketing audit now."
animationType="reveal-blur"
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
@@ -266,4 +266,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}