10 Commits

Author SHA1 Message Date
632d5f5b0e Update src/app/page.tsx 2026-03-03 19:44:01 +00:00
02a2e47483 Update src/app/page.tsx 2026-03-03 19:32:28 +00:00
01d82f500e Update src/app/styles/variables.css 2026-03-03 19:27:50 +00:00
499470486b Update src/app/styles/base.css 2026-03-03 19:27:50 +00:00
fa87385a30 Update src/app/page.tsx 2026-03-03 19:27:50 +00:00
4fca796f17 Update src/app/layout.tsx 2026-03-03 19:27:49 +00:00
86fd66cd4f Merge version_6 into main
Merge version_6 into main
2026-03-03 19:20:57 +00:00
0b1452ab23 Merge version_6 into main
Merge version_6 into main
2026-03-03 19:18:35 +00:00
1b10b9c9a3 Merge version_6 into main
Merge version_6 into main
2026-03-03 18:59:40 +00:00
f6c54fbecd Merge version_6 into main
Merge version_6 into main
2026-03-03 18:57:15 +00:00
4 changed files with 31 additions and 30 deletions

View File

@@ -1,10 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google"; import { Poppins } from "next/font/google";
import "./styles/variables.css"; import "./styles/variables.css";
import "./globals.css"; import "./globals.css";
const inter = Inter({ const poppins = Poppins({
variable: "--font-inter", subsets: ["latin"], variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -17,7 +18,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.variable}> <body className={poppins.variable}>
{children} {children}
<script <script

View File

@@ -11,7 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download, Moon, Sun } from 'lucide-react'; import { Sparkles, Zap, Lightbulb, Rocket, Users, Star, HelpCircle, Download } from 'lucide-react';
import AnimatedChatDemo from '@/components/sections/demo/AnimatedChatDemo'; import AnimatedChatDemo from '@/components/sections/demo/AnimatedChatDemo';
export default function LandingPage() { export default function LandingPage() {
@@ -19,16 +19,16 @@ export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="rounded"
contentWidth="small" contentWidth="medium"
sizing="mediumLargeSizeLargeTitles" sizing="mediumLargeSizeLargeTitles"
background="noise" background="none"
cardStyle="soft-shadow" cardStyle="glass-elevated"
primaryButtonStyle="flat" primaryButtonStyle="shadow"
secondaryButtonStyle="layered" secondaryButtonStyle="glass"
headingFontWeight="extrabold" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered

View File

@@ -2,6 +2,6 @@
@layer base { @layer base {
body { body {
font-family: var(--font-inter), sans-serif; font-family: var(--font-poppins), sans-serif;
} }
} }

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f3f0;;; /* --background: #ffffff;;;
--card: #fdfcfb;;; --card: #f9f9f9;;;
--foreground: #2a2520e6;;; --foreground: #000612e6;;;
--primary-cta: #c69c7b;;; --primary-cta: #106EFB;;;
--secondary-cta: #fdfcfb;;; --secondary-cta: #f9f9f9;;;
--accent: #e8dfd5;;; --accent: #e2e2e2;;;
--background-accent: #d4c4b0;;; */ --background-accent: #106EFB;;; */
--background: #f5f3f0;;; --background: #ffffff;;;
--card: #fdfcfb;;; --card: #f9f9f9;;;
--foreground: #2a2520e6;;; --foreground: #000612e6;;;
--primary-cta: #c69c7b;;; --primary-cta: #106EFB;;;
--primary-cta-text: #ffffff;;; --primary-cta-text: #ffffff;;;
--secondary-cta: #fdfcfb;;; --secondary-cta: #f9f9f9;;;
--secondary-cta-text: #120a00e6;;; --secondary-cta-text: #000612e6;;;
--accent: #e8dfd5;;; --accent: #e2e2e2;;;
--background-accent: #d4c4b0;;; --background-accent: #106EFB;;;
/* 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);