Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 36696dadf3 | |||
| 14957d7d49 | |||
| 33a3e7ce85 | |||
| 77dcc6fc40 | |||
| e089d4051b | |||
| a750016ba0 | |||
| edeb0d9271 | |||
| bc521833c6 | |||
| aadfe69031 | |||
| cee0c4783b | |||
| 47a40ccd9e | |||
| acbdd760b7 | |||
| 5c1e77a9ca |
27
src/app/anime/[id]/page.tsx
Normal file
27
src/app/anime/[id]/page.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import React from "react";
|
||||
|
||||
export default function AnimePage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/catalog" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Signup", id: "/signup" },
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32 pb-20 px-6 container mx-auto">
|
||||
<h1 className="text-4xl font-bold">Anime Details</h1>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
39
src/app/catalog/page.tsx
Normal file
39
src/app/catalog/page.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import React from "react";
|
||||
|
||||
export default function CatalogPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/catalog" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Signup", id: "/signup" },
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32 pb-20 px-6 container mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">Anime Catalog</h1>
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<div className="col-span-1 border rounded-lg p-6 h-fit">
|
||||
<h2 className="font-bold mb-4">Filters</h2>
|
||||
</div>
|
||||
<div className="col-span-3 grid grid-cols-2 md:grid-cols-3 gap-6">
|
||||
{[1, 2, 3].map((i) => (
|
||||
<div key={i} className="border p-4 rounded-lg">
|
||||
<h3 className="font-bold">Anime Title {i}</h3>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
37
src/app/dashboard/page.tsx
Normal file
37
src/app/dashboard/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
|
||||
export default function DashboardPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/catalog" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Signup", id: "/signup" },
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features" className="pt-32 px-6">
|
||||
<FeatureCardTwentyEight
|
||||
title="Your Dashboard"
|
||||
description="Welcome back!"
|
||||
features={[
|
||||
{ id: "1", title: "Continue", subtitle: "History", category: "History", value: "3" },
|
||||
{ id: "2", title: "Picks", subtitle: "Suggested", category: "Suggested", value: "Top" }
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
34
src/app/login/page.tsx
Normal file
34
src/app/login/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/catalog" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Signup", id: "/signup" },
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact" className="min-h-screen flex items-center justify-center pt-20">
|
||||
<ContactCTA
|
||||
tag="Login"
|
||||
title="Welcome Back"
|
||||
description="Sign in to your account to continue."
|
||||
buttons={[{ text: "Login" }, { text: "Sign Up", href: "/signup" }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
@@ -32,6 +32,8 @@ export default function LandingPage() {
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Explore", id: "features" },
|
||||
{ name: "Plans", id: "pricing" },
|
||||
{ name: "Community", id: "testimonials" },
|
||||
{ name: "Admin", id: "admin" }
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
@@ -121,16 +123,17 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-modern-techno-background-with-particles-with-shallow-depth-field_1048-12266.jpg"
|
||||
<FooterBaseReveal
|
||||
logoText="AniStream"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#" }] }
|
||||
{ title: "Anime", items: [{ label: "Browse", href: "#features" }, { label: "Latest", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#" }, { label: "Help Center", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Terms of Service", href: "#" }, { label: "Privacy Policy", href: "#" }] },
|
||||
{ title: "Admin", items: [{ label: "Upload Anime", href: "#" }, { label: "Manage Episodes", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
34
src/app/signup/page.tsx
Normal file
34
src/app/signup/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
|
||||
export default function SignupPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/catalog" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Signup", id: "/signup" },
|
||||
]}
|
||||
brandName="AniStream"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact" className="min-h-screen flex items-center justify-center pt-20">
|
||||
<ContactCTA
|
||||
tag="Sign Up"
|
||||
title="Join the Fanbase"
|
||||
description="Create an account today."
|
||||
buttons={[{ text: "Create Account" }, { text: "Login", href: "/login" }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user