Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d9bedbe6b | |||
| e0ac7973dc | |||
| f8016a39e6 | |||
| 7c635772ff | |||
| 7035b25d84 | |||
| 3aca3d3585 | |||
| f66c8b749a | |||
| afbf090d5e |
@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Nunito } from "next/font/google";
|
||||||
|
import { Mulish } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -23,14 +25,12 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
|
||||||
variable: "--font-libre-baskerville",
|
const nunito = Nunito({
|
||||||
subsets: ["latin"],
|
variable: "--font-nunito", subsets: ["latin"],
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
});
|
||||||
const inter = Inter({
|
const mulish = Mulish({
|
||||||
variable: "--font-inter",
|
variable: "--font-mulish", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -41,7 +41,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body className={`${nunito.variable} ${mulish.variable} antialiased`}>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/t-shirt-painting-indoors-still-life_23-2150572736.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/t-shirt-painting-indoors-still-life_23-2150572736.jpg?_wi=2"
|
||||||
imageAlt="Cute anime collectibles"
|
imageAlt="Cute anime collectibles"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,6 +65,8 @@ export default function LandingPage() {
|
|||||||
buttons={[{ text: "Browse Shop", href: "#products" }]}
|
buttons={[{ text: "Browse Shop", href: "#products" }]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/digital-art-style-pottery-illustration_23-2151813477.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/digital-art-style-pottery-illustration_23-2151813477.jpg?_wi=2"
|
||||||
imageAlt="organizing anime collectibles"
|
imageAlt="organizing anime collectibles"
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -80,18 +83,20 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
title="Why Buy from Me?"
|
title="Why Buy from Me?"
|
||||||
description="Dedicated to giving my fellow collectors the best experience possible."
|
description="Dedicated to giving my fellow collectors the best experience possible."
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
animationType="opacity"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[]}
|
products={[]}
|
||||||
title="Featured Merchandise"
|
title="Featured Merchandise"
|
||||||
description="Limited quantities available from my private collection."
|
description="Limited quantities available from my private collection."
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -103,6 +108,7 @@ export default function LandingPage() {
|
|||||||
plans={[]}
|
plans={[]}
|
||||||
title="Shop Tiers"
|
title="Shop Tiers"
|
||||||
description="Choose your level of collector experience."
|
description="Choose your level of collector experience."
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -113,8 +119,8 @@ export default function LandingPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
author="Sarah M."
|
author="Sarah M."
|
||||||
avatars={[]}
|
avatars={[]}
|
||||||
ratingAnimation="blur-reveal"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="blur-reveal"
|
avatarsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -126,7 +132,8 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/purple-yeti-cartoon-with-boxes_23-2150248732.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/purple-yeti-cartoon-with-boxes_23-2150248732.jpg"
|
||||||
title="Collector FAQs"
|
title="Collector FAQs"
|
||||||
description="Answers to the most common questions about the shop."
|
description="Answers to the most common questions about the shop."
|
||||||
faqsAnimation="blur-reveal"
|
faqsAnimation="slide-up"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -138,6 +145,7 @@ export default function LandingPage() {
|
|||||||
title="Join the Collector List"
|
title="Join the Collector List"
|
||||||
description="Be the first to know about new listings from my personal collection."
|
description="Be the first to know about new listings from my personal collection."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-knitting-while-relaxing_23-2149401794.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/young-man-knitting-while-relaxing_23-2149401794.jpg"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -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-inter), sans-serif;
|
font-family: var(--font-mulish), 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-libre-baskerville), serif;
|
font-family: var(--font-nunito), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user