Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b4ef29242 | |||
| 8c4fa3d8c8 |
@@ -1,17 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
import { Halant } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Source_Sans_3 } 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 poppins = Poppins({
|
const halant = Halant({
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const inter = Inter({
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const sourceSans3 = Source_Sans_3({
|
||||||
|
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -44,7 +49,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${poppins.variable} ${dmSans.variable} antialiased`}
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -15,15 +15,15 @@ import { Sparkles, Zap, TrendingUp, Globe, Star, MessageCircle, Instagram, Twitt
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-bubble"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="pill"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="mediumSmall"
|
||||||
sizing="large"
|
sizing="medium"
|
||||||
background="noise"
|
background="blurBottom"
|
||||||
cardStyle="glass-depth"
|
cardStyle="inset"
|
||||||
primaryButtonStyle="shadow"
|
primaryButtonStyle="diagonal-gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
@@ -31,7 +31,7 @@ export default function LandingPage() {
|
|||||||
brandName="GlobalTrapClothing"
|
brandName="GlobalTrapClothing"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Collections", id: "products" },
|
{ name: "Collections", id: "products" },
|
||||||
{ name: "About", id: "features" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Collection", href: "#products" },
|
{ text: "Shop Collection", href: "#products" },
|
||||||
{ text: "Learn More", href: "#features" }
|
{ text: "Learn More", href: "#about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -110,7 +110,7 @@ export default function LandingPage() {
|
|||||||
id: "04", title: "Authentic Culture", description: "Supporting independent artists and streetwear movements worldwide", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-brutalism-template_23-2149733972.jpg?_wi=2", imageAlt: "Cultural authenticity"
|
id: "04", title: "Authentic Culture", description: "Supporting independent artists and streetwear movements worldwide", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-brutalism-template_23-2149733972.jpg?_wi=2", imageAlt: "Cultural authenticity"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
|
|||||||
@@ -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-dm-sans), sans-serif;
|
font-family: var(--font-source-sans-3), 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-poppins), sans-serif;
|
font-family: var(--font-source-sans-3), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #fffefe;
|
||||||
--card: #1a1a1a;
|
--card: #f6f7f4;
|
||||||
--foreground: #ffffff;
|
--foreground: #080908;
|
||||||
--primary-cta: #e34400;
|
--primary-cta: #0e3a29;
|
||||||
--primary-cta-text: #fffefe;
|
--primary-cta-text: #fffefe;
|
||||||
--secondary-cta: #010101;
|
--secondary-cta: #e7eecd;
|
||||||
--secondary-cta-text: #080908;
|
--secondary-cta-text: #080908;
|
||||||
--accent: #ff7b05;
|
--accent: #35c18b;
|
||||||
--background-accent: #e34400;
|
--background-accent: #ecebe4;
|
||||||
|
|
||||||
/* 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