Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 647291585b | |||
| 6d6aa18dc4 |
@@ -1,17 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Crimson_Text } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { Halant } from "next/font/google";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const crimsonText = Crimson_Text({
|
const poppins = Poppins({
|
||||||
variable: "--font-crimson-text", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
weight: ["400", "600"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const halant = Halant({
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -44,7 +50,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${crimsonText.variable} ${dmSans.variable} antialiased`}
|
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -14,16 +14,16 @@ import { Sparkles, Package, Lightbulb, HelpCircle, Star } from "lucide-react";
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="directional-hover"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="mediumSmall"
|
||||||
sizing="largeSmall"
|
sizing="largeSmall"
|
||||||
background="none"
|
background="blurBottom"
|
||||||
cardStyle="solid"
|
cardStyle="soft-shadow"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="radial-glow"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-crimson-text), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-crimson-text), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f0e8;;
|
/* --background: #ffffff;;;;
|
||||||
--card: #ede5d8;;
|
--card: #f9f9f9;;;;
|
||||||
--foreground: #2b1810;;
|
--foreground: #000f06e6;;;;
|
||||||
--primary-cta: #8b6914;;
|
--primary-cta: #0a7039;;;;
|
||||||
--secondary-cta: #1a3a52;;
|
--secondary-cta: #f9f9f9;;;;
|
||||||
--accent: #b8111f;;
|
--accent: #e2e2e2;;;;
|
||||||
--background-accent: #2d5016;; */
|
--background-accent: #c4c4c4;;;; */
|
||||||
|
|
||||||
--background: #f5f0e8;;
|
--background: #ffffff;;;;
|
||||||
--card: #ede5d8;;
|
--card: #f9f9f9;;;;
|
||||||
--foreground: #2b1810;;
|
--foreground: #000f06e6;;;;
|
||||||
--primary-cta: #8b6914;;
|
--primary-cta: #0a7039;;;;
|
||||||
--primary-cta-text: #f6f0e9;;
|
--primary-cta-text: #ffffff;;;;
|
||||||
--secondary-cta: #1a3a52;;
|
--secondary-cta: #f9f9f9;;;;
|
||||||
--secondary-cta-text: #2b180a;;
|
--secondary-cta-text: #000f06e6;;;;
|
||||||
--accent: #b8111f;;
|
--accent: #e2e2e2;;;;
|
||||||
--background-accent: #2d5016;;
|
--background-accent: #c4c4c4;;;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user