Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7bb9f0ce2c | |||
| 05617ec775 | |||
| b29759b274 | |||
| 7a5ed3c532 | |||
| 2a9198af8f | |||
| 476a32f177 | |||
| a102c6fa57 | |||
| 6ac340740d | |||
| 06d3b53fc1 | |||
| 9edf95644d | |||
| 84d2cd5946 | |||
| 3124d54a69 | |||
| 330341138a | |||
| 778dc09943 | |||
| 483cd55371 | |||
| d603ae0029 | |||
| f09eb07b29 | |||
| 0325263e41 | |||
| ecfde0118a | |||
| 029f5f7fe5 | |||
| f2dab71e9d | |||
| 9cf05a14d9 | |||
| d50129f3d7 | |||
| c9f9b214f8 | |||
| 9e00eb2e7f | |||
| c4f699f8e0 | |||
| 880e90a358 | |||
| 4151b0198b | |||
| 15e7724bf3 | |||
| 289e32f702 | |||
| 6a9af86e5c | |||
| 8981238592 | |||
| 5aba5a6d53 | |||
| 59705560de | |||
| 5f04836ee8 | |||
| 5d994e8083 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,8 +42,9 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -54,7 +56,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
99
src/app/login/page.tsx
Normal file
99
src/app/login/page.tsx
Normal file
@@ -0,0 +1,99 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="large"
|
||||
background="noise"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Collection", id: "#products" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Sign Up", id: "/signup" },
|
||||
{ name: "Login", id: "/login" }
|
||||
]}
|
||||
brandName="ChicThreads"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="login" data-section="login" className="py-24 md:py-32 lg:py-48 flex items-center justify-center">
|
||||
<div className="max-w-md w-full text-center p-8 bg-card rounded-lg shadow-lg">
|
||||
<h1 className="text-4xl font-bold mb-4">Login</h1>
|
||||
<p className="text-lg text-foreground mb-8">
|
||||
Welcome back! Please enter your credentials to log in.
|
||||
</p>
|
||||
{/* Placeholder for a login form */}
|
||||
<div className="space-y-4">
|
||||
<input
|
||||
type="email"
|
||||
placeholder="Email"
|
||||
className="w-full p-3 rounded-md bg-background-accent border border-foreground/10 text-foreground placeholder-foreground/50 focus:outline-none focus:ring-2 focus:ring-primary-cta"
|
||||
/>
|
||||
<input
|
||||
type="password"
|
||||
placeholder="Password"
|
||||
className="w-full p-3 rounded-md bg-background-accent border border-foreground/10 text-foreground placeholder-foreground/50 focus:outline-none focus:ring-2 focus:ring-primary-cta"
|
||||
/>
|
||||
<button className="w-full py-3 px-6 rounded-md bg-primary-cta text-white font-semibold transition-colors duration-200 hover:bg-primary-cta/90">
|
||||
Login
|
||||
</button>
|
||||
<p className="text-sm text-foreground/70 mt-4">
|
||||
Don't have an account? <a href="/signup" className="text-primary-cta hover:underline">Sign Up</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Story", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "Abayas", href: "#products" },
|
||||
{ label: "Handbags", href: "#products" },
|
||||
{ label: "New Arrivals", href: "#products" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Shipping & Returns", href: "#" },
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 ChicThreads. All rights reserved."
|
||||
bottomRightText="Privacy Policy | Terms of Service"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -6,7 +6,7 @@ import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
@@ -44,17 +44,21 @@ export default function LandingPage() {
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
{
|
||||
name: "Sign Up", id: "/signup"},
|
||||
{
|
||||
name: "Login", id: "/login"}
|
||||
]}
|
||||
brandName="ChicThreads"
|
||||
brandName=""
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroLogoBillboard
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
logoText="ChicThreads"
|
||||
description="Discover a curated collection of elegant abayas, sophisticated handbags, and modern apparel that redefines modest fashion. Elevate your style with timeless pieces."
|
||||
title="Elevate Your Style"
|
||||
description="Discover a curated collection of elegant abayas, sophisticated handbags, and modern apparel that redefines modest fashion. Elevate your style with timeless pieces from ChicThreads."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop New Arrivals", href: "#products"},
|
||||
@@ -62,8 +66,10 @@ export default function LandingPage() {
|
||||
text: "Learn More", href: "#about"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashionable-young-woman-grey-coat-hat-walking-street-city-centre-smiling-true-emotions-stylish-lifestyle-luxury-clothes-elegant-look_197531-1885.jpg"
|
||||
imageAlt="Elegant woman wearing an abaya and carrying a luxury handbag"
|
||||
imageAlt="Elegant woman wearing an abaya and carrying a luxury handbag, representing ChicThreads style"
|
||||
mediaAnimation="opacity"
|
||||
tag="ChicThreads"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -230,6 +236,15 @@ export default function LandingPage() {
|
||||
label: "Contact Us", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://www.instagram.com/chicthreads" },
|
||||
{ label: "Threads", href: "https://www.threads.net/@chicthreads" },
|
||||
{ label: "TikTok", href: "https://www.tiktok.com/@chicthreads" },
|
||||
{ label: "YouTube", href: "https://www.youtube.com/@chicthreads" },
|
||||
{ label: "X", href: "https://twitter.com/chicthreads" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2024 ChicThreads. All rights reserved."
|
||||
bottomRightText="Privacy Policy | Terms of Service"
|
||||
@@ -238,4 +253,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
89
src/app/signup/page.tsx
Normal file
89
src/app/signup/page.tsx
Normal file
@@ -0,0 +1,89 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import EmailSignupForm from '@/components/form/EmailSignupForm';
|
||||
|
||||
export default function SignupPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="large"
|
||||
background="noise"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Collection", id: "#products" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Sign Up", id: "/signup" },
|
||||
{ name: "Login", id: "/login" }
|
||||
]}
|
||||
brandName="ChicThreads"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="signup" data-section="signup" className="py-24 md:py-32 lg:py-48 flex items-center justify-center">
|
||||
<div className="max-w-md w-full text-center p-8 bg-card rounded-lg shadow-lg">
|
||||
<h1 className="text-4xl font-bold mb-4">Sign Up</h1>
|
||||
<p className="text-lg text-foreground mb-8">
|
||||
Join ChicThreads today and discover exclusive collections.
|
||||
</p>
|
||||
<EmailSignupForm
|
||||
inputPlaceholder="Your email address"
|
||||
buttonText="Create Account"
|
||||
onSubmit={(email) => alert(`Signing up with ${email}`)}
|
||||
/>
|
||||
<p className="text-sm text-foreground/70 mt-4">
|
||||
Already have an account? <a href="/login" className="text-primary-cta hover:underline">Log In</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Story", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "Abayas", href: "#products" },
|
||||
{ label: "Handbags", href: "#products" },
|
||||
{ label: "New Arrivals", href: "#products" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Shipping & Returns", href: "#" },
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 ChicThreads. All rights reserved."
|
||||
bottomRightText="Privacy Policy | Terms of Service"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
--background: #030128;
|
||||
--card: #241f48;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffffff;
|
||||
--primary-cta-text: #040316;
|
||||
--secondary-cta: #221f5a;
|
||||
--secondary-cta-text: #d5d4f6;
|
||||
--accent: #4b3c8f;
|
||||
--background-accent: #bca3fd;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user