Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 632d5f5b0e | |||
| 02a2e47483 | |||
| 01d82f500e | |||
| 499470486b | |||
| fa87385a30 | |||
| 4fca796f17 | |||
| 86fd66cd4f | |||
| 0b1452ab23 | |||
| 1b10b9c9a3 | |||
| f6c54fbecd |
@@ -1,10 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -17,7 +18,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
<body className={poppins.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
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';
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -19,16 +19,16 @@ export default function LandingPage() {
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="noise"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
|
||||
@layer base {
|
||||
body {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f5f3f0;;;
|
||||
--card: #fdfcfb;;;
|
||||
--foreground: #2a2520e6;;;
|
||||
--primary-cta: #c69c7b;;;
|
||||
--secondary-cta: #fdfcfb;;;
|
||||
--accent: #e8dfd5;;;
|
||||
--background-accent: #d4c4b0;;; */
|
||||
/* --background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #106EFB;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #106EFB;;; */
|
||||
|
||||
--background: #f5f3f0;;;
|
||||
--card: #fdfcfb;;;
|
||||
--foreground: #2a2520e6;;;
|
||||
--primary-cta: #c69c7b;;;
|
||||
--background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #106EFB;;;
|
||||
--primary-cta-text: #ffffff;;;
|
||||
--secondary-cta: #fdfcfb;;;
|
||||
--secondary-cta-text: #120a00e6;;;
|
||||
--accent: #e8dfd5;;;
|
||||
--background-accent: #d4c4b0;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--secondary-cta-text: #000612e6;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #106EFB;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user