Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85da1cfbd3 | |||
| 5c83e33323 | |||
| e23736d223 | |||
| d7a4bb504a |
@@ -1,21 +1,10 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Manrope } from "next/font/google";
|
import { Manrope } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { DM_Sans } 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 halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const manrope = Manrope({
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
variable: "--font-manrope", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
@@ -39,9 +28,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -11,16 +11,16 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="mediumLarge"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="fluid"
|
background="none"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="light"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
@@ -54,7 +54,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="featured" data-section="featured">
|
<div id="featured" data-section="featured">
|
||||||
<ProductCardThree
|
<ProductCardThree
|
||||||
title="NEW COLLECTION"
|
title="FEATURED COLLECTION"
|
||||||
description="Explore our latest performance apparel designed for those who push limits"
|
description="Explore our latest performance apparel designed for those who push limits"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0B0B0B;
|
--background: #0a0a0a;
|
||||||
--card: #121212;
|
--card: #1a1a1a;
|
||||||
--foreground: #F2F2F2;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #F2F2F2;
|
--primary-cta: #ffffff;
|
||||||
--primary-cta-text: #0B0B0B;
|
--primary-cta-text: #0B0B0B;
|
||||||
--secondary-cta: #0B0B0B;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #F2F2F2;
|
--secondary-cta-text: #F2F2F2;
|
||||||
--accent: #0B0B0B;
|
--accent: #ffffff;
|
||||||
--background-accent: #0B0B0B;
|
--background-accent: #ffffff;
|
||||||
|
|
||||||
/* 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