21 Commits

Author SHA1 Message Date
011f3540e1 Update theme colors 2026-03-05 18:33:44 +00:00
32744a12c5 Update theme colors 2026-03-05 18:33:05 +00:00
19cb1a0fcc Update theme colors 2026-03-05 18:31:26 +00:00
35ff01e0a1 Update theme colors 2026-03-05 18:30:34 +00:00
b797efc6ee Update src/app/styles/variables.css 2026-03-05 17:53:34 +00:00
a1593aea55 Update src/app/styles/base.css 2026-03-05 17:53:33 +00:00
5fa2aa5de2 Update src/app/portfolio/page.tsx 2026-03-05 17:53:33 +00:00
f639e8144f Update src/app/page.tsx 2026-03-05 17:53:32 +00:00
5a56d05aba Update src/app/layout.tsx 2026-03-05 17:53:32 +00:00
c487845b6e Merge version_1 into main
Merge version_1 into main
2026-03-05 17:44:57 +00:00
448944d518 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:44:30 +00:00
af2dbb5dad Merge version_1 into main
Merge version_1 into main
2026-03-05 17:36:44 +00:00
97cd020e6c Merge version_1 into main
Merge version_1 into main
2026-03-05 17:36:20 +00:00
1c5f78c5f0 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:35:54 +00:00
eb069a1d88 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:35:44 +00:00
269fc73c6d Merge version_1 into main
Merge version_1 into main
2026-03-05 17:35:18 +00:00
64206bc28d Merge version_1 into main
Merge version_1 into main
2026-03-05 17:33:50 +00:00
e70d06dd2a Merge version_1 into main
Merge version_1 into main
2026-03-05 17:33:18 +00:00
1042ef7ad1 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:29:04 +00:00
41833c94b9 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:27:27 +00:00
63a71d693e Merge version_1 into main
Merge version_1 into main
2026-03-05 17:25:24 +00:00
4 changed files with 17 additions and 93 deletions

View File

@@ -1,76 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
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"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "VintDragon - Digital Marketing & Web Development for Growing Businesses",
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,
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -339,4 +339,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -175,4 +175,4 @@ export default function PortfolioPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,28 +1,5 @@
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0);
}
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;
@layer base {
body {
@apply text-foreground;
}
}