Merge version_2 into main #13

Merged
bender merged 5 commits from version_2 into main 2026-03-05 17:53:38 +00:00
5 changed files with 22 additions and 98 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;
}
}

View File

@@ -11,14 +11,14 @@
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f5f5f5;
--primary-cta: #ff0000;
--card: #0a0a0a;
--foreground: #ffffffe6;
--primary-cta: #e6e6e6;
--primary-cta-text: #ffffff;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
--accent: #991b1b;
--background-accent: #7f1d1d;
--accent: #737373;
--background-accent: #737373;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);