3 Commits

Author SHA1 Message Date
4feefc56df Update src/app/globals.css 2025-12-25 15:56:47 +00:00
d74d35c486 Update src/app/page.tsx 2025-12-25 15:29:58 +00:00
20984665d8 Update src/app/page.tsx 2025-12-25 15:27:43 +00:00
2 changed files with 13 additions and 13 deletions

View File

@@ -5,12 +5,12 @@
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #000000; --background: #000000;
--card: #1b1b1b; --card: #1a1a1a;
--foreground: #ffffff; --foreground: #ffffff;
--primary-cta: #ff0000; --primary-cta: #ff0000;
--secondary-cta: #151515; --secondary-cta: #1a1a1a;
--accent: #303030; --accent: #ff3333;
--background-accent: #303030; --background-accent: #ff0000;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal"; import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import AboutMetric from "@/components/sections/about/AboutMetric"; import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardEleven from "@/components/sections/feature/FeatureCardEleven"; import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven';
import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TeamCardSix from "@/components/sections/team/TeamCardSix"; import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Award, TrendingUp, Users, Zap } from "lucide-react"; import { Award, TrendingUp, Users, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {