Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 21968f9e72 | |||
| d546ab1920 | |||
| ea5de25d83 | |||
| b2ab106c06 | |||
| 03da54716e | |||
| e3e2ca6883 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #fafffb;;
|
||||
--card: #f7fffa;;
|
||||
--foreground: #001a0a;;
|
||||
--background: #ffffff;;
|
||||
--card: #f5f5f5;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #0a7039;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #a8d9be;;
|
||||
--background-accent: #6bbf8e;;
|
||||
--accent: #808080;;
|
||||
--background-accent: #d3d3d3;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-playfair-display and --font-roboto), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-playfair-display and --font-roboto), sans-serif;
|
||||
}
|
||||
@@ -1,13 +1,19 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import { Playfair_Display } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
const playfairDisplay = Playfair_Display({
|
||||
variable: "--font-playfair-display",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -49,7 +55,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${interTight.variable} antialiased`}
|
||||
className={`${playfairDisplay.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1275,4 +1281,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -21,7 +21,7 @@ export default function LandingPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="dotGrid"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="neon-glow-border"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -56,10 +56,6 @@ export default function LandingPage() {
|
||||
{ text: "Start Free Trial", href: "contact" },
|
||||
{ text: "Watch Demo", href: "features" }
|
||||
]}
|
||||
className="w-full"
|
||||
containerClassName="max-w-7xl mx-auto"
|
||||
titleClassName="text-5xl md:text-6xl font-bold"
|
||||
descriptionClassName="text-lg md:text-xl opacity-90"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,8 +71,6 @@ export default function LandingPage() {
|
||||
buttons={[
|
||||
{ text: "Learn Our Story", href: "contact" }
|
||||
]}
|
||||
titleClassName="text-5xl font-bold mb-8"
|
||||
descriptionClassName="text-lg leading-relaxed"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -409,4 +403,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user