diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3865daf..a1e2d83 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -13,6 +13,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Check, Instagram, Music, Twitter } from "lucide-react";
+import Link from "next/link";
export default function LandingPage() {
return (
@@ -32,14 +33,10 @@ export default function LandingPage() {
@@ -47,49 +44,34 @@ export default function LandingPage() {
@@ -113,45 +95,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
- {
- title: "Audio Production", description: "End-to-end music production for artists, labels, and brands.", media: {
- imageSrc: "http://img.b2bpic.net/free-photo/white-headphones_93675-133847.jpg", imageAlt: "Studio headphones"},
- items: [
- {
- icon: Check,
- text: "Mixing & Mastering"},
- {
- icon: Check,
- text: "Sound Design"},
- ],
- reverse: false,
- },
- {
- title: "Artist Development", description: "Empowering emerging talent with guidance and technical expertise.", media: {
- imageSrc: "http://img.b2bpic.net/free-photo/african-american-tracking-engineer-working-with-editing-software-pc_482257-83498.jpg", imageAlt: "Synth keyboard"},
- items: [
- {
- icon: Check,
- text: "Creative Direction"},
- {
- icon: Check,
- text: "Mentorship"},
- ],
- reverse: true,
- },
- {
- title: "Sonic Branding", description: "Custom auditory identities for digital platforms and video content.", media: {
- imageSrc: "http://img.b2bpic.net/free-photo/empty-professional-recording-studio-with-audio-software-pc_482257-93664.jpg", imageAlt: "Monitor speakers"},
- items: [
- {
- icon: Check,
- text: "Podcast Intro"},
- {
- icon: Check,
- text: "Ad Jingles"},
- ],
- reverse: false,
- },
+ { title: "Audio Production", description: "End-to-end music production for artists, labels, and brands.", media: { imageSrc: "http://img.b2bpic.net/free-photo/white-headphones_93675-133847.jpg", imageAlt: "Studio headphones" }, items: [{ icon: Check, text: "Mixing & Mastering" }, { icon: Check, text: "Sound Design" }], reverse: false },
+ { title: "Artist Development", description: "Empowering emerging talent with guidance and technical expertise.", media: { imageSrc: "http://img.b2bpic.net/free-photo/african-american-tracking-engineer-working-with-editing-software-pc_482257-83498.jpg", imageAlt: "Synth keyboard" }, items: [{ icon: Check, text: "Creative Direction" }, { icon: Check, text: "Mentorship" }], reverse: true },
+ { title: "Sonic Branding", description: "Custom auditory identities for digital platforms and video content.", media: { imageSrc: "http://img.b2bpic.net/free-photo/empty-professional-recording-studio-with-audio-software-pc_482257-93664.jpg", imageAlt: "Monitor speakers" }, items: [{ icon: Check, text: "Podcast Intro" }, { icon: Check, text: "Ad Jingles" }], reverse: false },
]}
title="Our Studio Specializations"
description="Professional services tailored for modern artists and media production."
@@ -165,24 +111,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "p1", brand: "Studio", name: "Professional Headphones", price: "199$", rating: 5,
- reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/bass-guitar-player-stage-with-set-distortion-effect-pedals_169016-13128.jpg"},
- {
- id: "p2", brand: "Keys", name: "Synth Keyboard", price: "499$", rating: 5,
- reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/audio-technician-working-recording-editing-new-music-studio_482257-93653.jpg"},
- {
- id: "p3", brand: "Audio", name: "Monitor Speakers", price: "299$", rating: 4,
- reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/sound-mixer-studio_107420-64845.jpg"},
- {
- id: "p4", brand: "Mic", name: "Condenser Microphone", price: "150$", rating: 5,
- reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/creative-musician-singing-guitar-professional-studio-control-room_482257-122299.jpg"},
- {
- id: "p5", brand: "Interface", name: "Pro Audio Interface", price: "350$", rating: 5,
- reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/video-creator-woman-editing-music-video-dual-monitors-loft-studio_482257-121062.jpg"},
- {
- id: "p6", brand: "Console", name: "Mixing Fader Set", price: "899$", rating: 5,
- reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/digital-mixer-recording-studio-with-computer-recording-sounds-music-concept-creativity-show-business_169016-2284.jpg"},
+ { id: "p1", brand: "Studio", name: "Professional Headphones", price: "199$", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/bass-guitar-player-stage-with-set-distortion-effect-pedals_169016-13128.jpg", onProductClick: () => window.location.href = "/products/p1" },
+ { id: "p2", brand: "Keys", name: "Synth Keyboard", price: "499$", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/audio-technician-working-recording-editing-new-music-studio_482257-93653.jpg", onProductClick: () => window.location.href = "/products/p2" },
+ { id: "p3", brand: "Audio", name: "Monitor Speakers", price: "299$", rating: 4, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/sound-mixer-studio_107420-64845.jpg", onProductClick: () => window.location.href = "/products/p3" },
]}
title="Featured Gear & Releases"
description="Explore the tools we use and the sounds we've curated."
@@ -195,16 +126,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
- {
- id: "1", name: "Sarah J.", role: "Singer", testimonial: "Melody Baku transformed my demo into a radio-ready masterpiece.", imageSrc: "http://img.b2bpic.net/free-photo/vintage-collage-composition-design_23-2149485447.jpg"},
- {
- id: "2", name: "Mark D.", role: "Producer", testimonial: "Their production technique is simply world-class. Incredible attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/black-boy-posing-with-vinyls_23-2148171566.jpg"},
- {
- id: "3", name: "Elena R.", role: "Songwriter", testimonial: "The best studio experience I've had. Professional, fast, and so creative.", imageSrc: "http://img.b2bpic.net/free-photo/camcorder-vinyls_23-2147685030.jpg"},
- {
- id: "4", name: "David L.", role: "Podcast Producer", testimonial: "They defined our audio brand instantly. Truly professional workflow.", imageSrc: "http://img.b2bpic.net/free-photo/vinyl-player-vinyl-record-generative-ai_169016-29044.jpg"},
- {
- id: "5", name: "Chris T.", role: "Artist", testimonial: "The sonic landscape they built for my EP exceeded all expectations.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-music-producer-finishing-his-new-track-professional-studio_482257-122055.jpg"},
+ { id: "1", name: "Sarah J.", role: "Singer", testimonial: "Melody Baku transformed my demo into a radio-ready masterpiece.", imageSrc: "http://img.b2bpic.net/free-photo/vintage-collage-composition-design_23-2149485447.jpg" },
+ { id: "2", name: "Mark D.", role: "Producer", testimonial: "Their production technique is simply world-class. Incredible attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/black-boy-posing-with-vinyls_23-2148171566.jpg" },
+ { id: "3", name: "Elena R.", role: "Songwriter", testimonial: "The best studio experience I've had. Professional, fast, and so creative.", imageSrc: "http://img.b2bpic.net/free-photo/camcorder-vinyls_23-2147685030.jpg" },
]}
title="What Artists Are Saying"
description="Trust our craft to define your unique sonic footprint."
@@ -217,12 +141,9 @@ export default function LandingPage() {
title="Industry Footprint"
tag="Performance"
metrics={[
- {
- id: "m1", value: "120+", description: "Global Projects"},
- {
- id: "m2", value: "99%", description: "Client Satisfaction"},
- {
- id: "m3", value: "2.5M+", description: "Streams Produced"},
+ { id: "m1", value: "120+", description: "Global Projects" },
+ { id: "m2", value: "99%", description: "Client Satisfaction" },
+ { id: "m3", value: "2.5M+", description: "Streams Produced" },
]}
metricsAnimation="slide-up"
/>
@@ -233,12 +154,8 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
- {
- id: "q1", title: "How do I start a project?", content: "Reach out via our contact form and let us know your goals."},
- {
- id: "q2", title: "Do you accept international work?", content: "Yes, we work with artists all across the globe."},
- {
- id: "q3", title: "What is the turnaround time?", content: "Varies by scope, but we offer fast and professional service."},
+ { id: "q1", title: "How do I start a project?", content: "Reach out via our contact form and let us know your goals." },
+ { id: "q2", title: "Do you accept international work?", content: "Yes, we work with artists all across the globe." },
]}
title="Frequently Asked Questions"
description="Answers to common questions regarding our production process."
@@ -252,15 +169,10 @@ export default function LandingPage() {
title="Start Your Music Journey"
description="Have a project in mind? We'd love to hear it. Let's create something iconic together."
inputs={[
- {
- name: "name", type: "text", placeholder: "Adınız", required: true,
- },
- {
- name: "email", type: "email", placeholder: "E-posta", required: true,
- },
+ { name: "name", type: "text", placeholder: "Adınız", required: true },
+ { name: "email", type: "email", placeholder: "E-posta", required: true },
]}
- textarea={{
- name: "message", placeholder: "Projeniz hakkında bilgi verin..."}}
+ textarea={{ name: "message", placeholder: "Projeniz hakkında bilgi verin..." }}
imageSrc="http://img.b2bpic.net/free-photo/woman-working-computer-man-listening-music_23-2148919873.jpg"
/>
@@ -270,12 +182,8 @@ export default function LandingPage() {
logoText="Melody Baku"
copyrightText="© 2025 Melody Baku | Tüm Hakları Saklıdır"
socialLinks={[
- {
- icon: Instagram,
- href: "#", ariaLabel: "Instagram"},
- {
- icon: Twitter,
- href: "#", ariaLabel: "Twitter"},
+ { icon: Instagram, href: "#", ariaLabel: "Instagram" },
+ { icon: Twitter, href: "#", ariaLabel: "Twitter" },
]}
/>
diff --git a/src/app/products/[id]/page.tsx b/src/app/products/[id]/page.tsx
new file mode 100644
index 0000000..b6bd0bd
--- /dev/null
+++ b/src/app/products/[id]/page.tsx
@@ -0,0 +1,33 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import { useParams } from "next/navigation";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import FooterCard from '@/components/sections/footer/FooterCard';
+import { Instagram, Twitter } from "lucide-react";
+
+export default function ProductDetail() {
+ const { id } = useParams();
+ return (
+