diff --git a/src/app/art/page.tsx b/src/app/art/page.tsx new file mode 100644 index 0000000..fd1523e --- /dev/null +++ b/src/app/art/page.tsx @@ -0,0 +1,2 @@ +"use client"; +export default function ArtPage() { return
Art Category
; } \ No newline at end of file diff --git a/src/app/crafts/page.tsx b/src/app/crafts/page.tsx new file mode 100644 index 0000000..27a774c --- /dev/null +++ b/src/app/crafts/page.tsx @@ -0,0 +1,2 @@ +"use client"; +export default function CraftsPage() { return
Crafts Category
; } \ No newline at end of file diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..e96ccae --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,31 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import { LayoutDashboard, PenTool, Image, User, Settings } from "lucide-react"; + +export default function DashboardPage() { + return ( + + + + + ); +} \ No newline at end of file diff --git a/src/app/ideas/page.tsx b/src/app/ideas/page.tsx new file mode 100644 index 0000000..5fd2202 --- /dev/null +++ b/src/app/ideas/page.tsx @@ -0,0 +1,2 @@ +"use client"; +export default function IdeasPage() { return
Ideas Category
; } \ No newline at end of file diff --git a/src/app/imagination/page.tsx b/src/app/imagination/page.tsx new file mode 100644 index 0000000..478b37b --- /dev/null +++ b/src/app/imagination/page.tsx @@ -0,0 +1,2 @@ +"use client"; +export default function ImaginationPage() { return
Imagination Category
; } \ No newline at end of file diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx new file mode 100644 index 0000000..4267388 --- /dev/null +++ b/src/app/login/page.tsx @@ -0,0 +1,26 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; + +export default function LoginPage() { + return ( + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c68e5f..8731b31 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,22 +28,13 @@ export default function LandingPage() { @@ -158,44 +87,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sarah Johnson", - role: "Writer", - testimonial: "This community gave me the courage to finally share my stories with the world.", - imageSrc: "http://img.b2bpic.net/free-photo/spotlight-portrait-golden-hour_23-2151915127.jpg?_wi=1", - }, - { - id: "2", - name: "David Chen", - role: "Photographer", - testimonial: "I find constant inspiration in the raw emotion expressed by other artists here.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg", - }, - { - id: "3", - name: "Emily Rodriguez", - role: "Painter", - testimonial: "The most supportive group of creators I have ever found. It feels like home.", - imageSrc: "http://img.b2bpic.net/free-photo/cute-female-artist-looking-happy-enjoyed_259150-60636.jpg", - }, - { - id: "4", - name: "Robert Miller", - role: "Creative Enthusiast", - testimonial: "I love how diverse and authentic everyone's stories are. Truly an incredible place.", - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-standing-isolated-background-with-happy-cool-smile-face-lucky-person_839833-16953.jpg", - }, - { - id: "5", - name: "Jane Doe", - role: "Artist", - testimonial: "Every day, I come here to get inspired and share my creative process with others.", - imageSrc: "http://img.b2bpic.net/free-photo/spotlight-portrait-golden-hour_23-2151915127.jpg?_wi=2", - }, + { id: "1", name: "Sarah Johnson", role: "Writer", testimonial: "StoryCraft gave me the platform I needed to share my stories.", imageSrc: "http://img.b2bpic.net/free-photo/spotlight-portrait-golden-hour_23-2151915127.jpg?_wi=1" }, + { id: "2", name: "David Chen", role: "Photographer", testimonial: "The art category is where I find my daily motivation.", imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg" }, ]} - title="What Our Community Says" - description="Hear from the wonderful people who share their passions here every day." + title="Voices of Our Community" + description="Creators from all around the world share why they choose StoryCraft." /> @@ -203,29 +99,11 @@ export default function LandingPage() { @@ -233,12 +111,10 @@ export default function LandingPage() {
@@ -248,14 +124,8 @@ export default function LandingPage() {
diff --git a/src/app/signup/page.tsx b/src/app/signup/page.tsx new file mode 100644 index 0000000..ca464da --- /dev/null +++ b/src/app/signup/page.tsx @@ -0,0 +1,26 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; + +export default function SignUpPage() { + return ( + + + + + ); +} \ No newline at end of file diff --git a/src/app/stories/page.tsx b/src/app/stories/page.tsx new file mode 100644 index 0000000..cd9008c --- /dev/null +++ b/src/app/stories/page.tsx @@ -0,0 +1,2 @@ +"use client"; +export default function StoriesPage() { return
Stories Category
; } \ No newline at end of file