Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 011f3540e1 | |||
| 32744a12c5 | |||
| 19cb1a0fcc | |||
| 35ff01e0a1 | |||
| b797efc6ee | |||
| a1593aea55 | |||
| 5fa2aa5de2 | |||
| f639e8144f | |||
| 5a56d05aba | |||
| c487845b6e | |||
| 448944d518 | |||
| af2dbb5dad | |||
| 97cd020e6c | |||
| 1c5f78c5f0 | |||
| eb069a1d88 | |||
| 269fc73c6d | |||
| 64206bc28d | |||
| e70d06dd2a | |||
| 1042ef7ad1 | |||
| 41833c94b9 | |||
| 63a71d693e |
@@ -1,75 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
|
||||||
variable: "--font-mulish",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "VintDragon - Digital Marketing & Web Development for Growing Businesses",
|
title: "VintDragon - Digital Marketing & Web Development", description: "VintDragon helps scaling companies generate more leads, dominate their markets, and drive measurable revenue growth through strategic web design, AI-powered marketing, and data-driven optimization."};
|
||||||
description: "Premium digital marketing and web development agency. We help scaling companies generate more leads, dominate their markets, and drive measurable revenue growth through strategic design and AI-powered solutions.",
|
|
||||||
keywords: "digital marketing, web development, SEO, paid advertising, conversion optimization, AI marketing, website design, growth agency, lead generation, performance marketing",
|
|
||||||
metadataBase: new URL("https://vintdragon.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://vintdragon.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "VintDragon - Digital Marketing & Web Development",
|
|
||||||
description: "Strategic growth partner helping businesses generate more leads and revenue through high-performance websites and data-driven marketing.",
|
|
||||||
url: "https://vintdragon.com",
|
|
||||||
siteName: "VintDragon",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUTy5QR9k4M4P80OQXSbT6XGLr/a-modern-data-visualization-dashboard-sh-1772731420415-4a8ffe67.png",
|
|
||||||
alt: "VintDragon - Digital Growth & Marketing",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
type: "website",
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "VintDragon - Results-Driven Digital Marketing & Web Development",
|
|
||||||
description: "Grow your business through strategic web design, AI-powered marketing, and data-driven optimization.",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUTy5QR9k4M4P80OQXSbT6XGLr/a-modern-data-visualization-dashboard-sh-1772731420415-4a8ffe67.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1438,7 +1386,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,28 +1,5 @@
|
|||||||
* {
|
@layer base {
|
||||||
scrollbar-width: thin;
|
body {
|
||||||
scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0);
|
@apply text-foreground;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
|
||||||
overscroll-behavior: none;
|
|
||||||
overscroll-behavior-y: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: var(--background);
|
|
||||||
color: var(--foreground);
|
|
||||||
font-family: var(--font-mulish), sans-serif;
|
|
||||||
position: relative;
|
|
||||||
min-height: 100vh;
|
|
||||||
overscroll-behavior: none;
|
|
||||||
overscroll-behavior-y: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
font-family: var(--font-mulish), sans-serif;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user