import React from "react"; import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Instagram, Youtube, Music2, Mail, MapPin, Calendar, ExternalLink, Spotify, Mic2, Disc3 } from "lucide-react"; // ============================= // Quick-start config (edit me) // ============================= const CONFIG = { crewName: "夢(BOY)", tagline: "できるだけリアル。江古田発ラップクルー。", heroImage: "https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?q=80&w=1920&auto=format&fit=crop", // TODO: replace with your photo primaryCTA: { label: "最新MVを見る", href: "https://www.youtube.com/" }, secondaryCTA: { label: "配信リンク", href: "https://linkco.re/" }, bookingEmail: "booking@example.com", pressKitUrl: "#", // URL to EPK / Google Drive / Dropbox location: "Tokyo, Nerima-ku", socials: [ { label: "Instagram", href: "https://instagram.com/", icon: Instagram }, { label: "YouTube", href: "https://youtube.com/", icon: Youtube }, ], members: [ { name: "MC A", role: "MC", bio: "日常と笑いを切り取る言葉の職人。", photo: "https://images.unsplash.com/photo-1601412436009-d964bd02edbc?q=80&w=640&auto=format&fit=crop" }, { name: "MC B", role: "MC", bio: "江古田なまりのパンチライン担当。", photo: "https://images.unsplash.com/photo-1520975922320-2806a37bba53?q=80&w=640&auto=format&fit=crop" }, { name: "MC C", role: "MC", bio: "メロディとフローの架け橋。", photo: "https://images.unsplash.com/photo-1546776310-eef45dd6d63c?q=80&w=640&auto=format&fit=crop" }, { name: "MC D", role: "MC", bio: "ユーモア×リアリティで場を温める。", photo: "https://images.unsplash.com/photo-1520676889577-6b62b1d050a4?q=80&w=640&auto=format&fit=crop" }, ], releases: [ { title: "こんにちーっす (EP)", date: "2025-04-01", cover: "https://images.unsplash.com/photo-1526948128573-703ee1aeb6fa?q=80&w=600&auto=format&fit=crop", links: [ { label: "YouTube", href: "https://youtube.com/" }, { label: "Spotify", href: "https://open.spotify.com/" }, { label: "Apple Music", href: "https://music.apple.com/" }, ], }, { title: "確実 (Single)", date: "2025-03-10", cover: "https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=600&auto=format&fit=crop", links: [ { label: "YouTube", href: "https://youtube.com/" }, { label: "Spotify", href: "https://open.spotify.com/" }, ], }, ], videos: [ { title: "確実 - Official MV", url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" }, ], shows: [ { date: "2025-09-14", venue: "江古田Club", city: "Tokyo", url: "#" }, { date: "2025-10-05", venue: "渋谷WWW", city: "Tokyo", url: "#" }, ], }; // Small helpers const Section = ({ id, title, children }: { id: string; title: string; children: React.ReactNode }) => (

{title}

{children}
); const NavLink = ({ href, children }: { href: string; children: React.ReactNode }) => ( {children} ); export default function Site() { return (
{/* NAV */}
{CONFIG.crewName}
{CONFIG.socials.map((s) => ( ))}
{/* HERO */}
{CONFIG.crewName} {CONFIG.tagline}
{/* ABOUT */}
エッセンス

2024年、東京・練馬区で結成された4MCラップクルー。2000年代の温度感と現代のユーモアを混ぜた“できるだけリアル”なピースフル・ミュージックを響かせる。

ハイライト
  • 1st EP「こんにちーっす」(2025)
  • 話題曲「確実」MV公開
  • 江古田ローカルとカルチャーのミックス
拠点 {CONFIG.location}
{/* MEMBERS */}
{CONFIG.members.map((m) => ( {m.name} {m.name} — {m.role} {m.bio} ))}
{/* MUSIC */}
{CONFIG.releases.map((r) => ( {r.title} {r.title}

{new Date(r.date).toLocaleDateString()}

{r.links.map((l) => ( ))}
))}
{/* VIDEO */}
{CONFIG.videos.map((v) => (