diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 821d1f1..7097504 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,62 +1,29 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import { Geist, Geist_Mono } from "next/font/google";
+import "./styles/base.css";
+import "./styles/variables.css";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "VOLGA - Premium Luxury Brand Excellence",
- description: "Transform your luxury brand with VOLGA. Strategic consulting, exclusive design, and high-end marketing for discerning clientele.",
- keywords: "luxury brand, premium consulting, exclusive design, high-end marketing, brand excellence, luxury strategy",
- openGraph: {
- title: "VOLGA - Luxury Brand Excellence",
- description: "Elevate your premium brand through sophisticated strategy and exceptional design.",
- siteName: "VOLGA",
- type: "website",
- },
- twitter: {
- card: "summary_large_image",
- title: "VOLGA - Premium Luxury Brands",
- description: "Transform your luxury brand with VOLGA's strategic excellence.",
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ed2725f..a15479b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,298 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
-import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
-import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
-import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
-import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
-import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
-import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import Link from "next/link";
-import { Sparkles, Award, Gem, MessageSquare } from "lucide-react";
export default function HomePage() {
- const navItems = [
- { name: "Home", id: "/" },
- { name: "Services", id: "/services" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
- { name: "Portfolio", id: "portfolio" },
- ];
-
return (
- {/* Navbar */}
-
-
-
-
- {/* Hero Section */}
-
-
-
-
- {/* About Section */}
-
-
-
-
- {/* Features Section */}
-
-
-
-
- {/* Testimonials Section */}
-
-
-
-
- {/* Metrics Section */}
-
-
-
-
- {/* Contact Section */}
-
-
-
-
- {/* Footer */}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index d60c0a4..3557f74 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #e3deea;
- --card: #ffffff;
- --foreground: #1f2027;
- --primary-cta: #1f2027;
+ --background: #fffefe;
+ --card: #f6f7f4;
+ --foreground: #080908;
+ --primary-cta: #0e3a29;
--primary-cta-text: #e3deea;
- --secondary-cta: #ffffff;
+ --secondary-cta: #e7eecd;
--secondary-cta-text: #1f2027;
- --accent: #627dc6;
- --background-accent: #627dc6;
+ --accent: #35c18b;
+ --background-accent: #ecebe4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);