Featured Post

Home page

import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { ShoppingCart, Sparkles, Flame } from "lucide-react"; import { motion } from "framer-motion"; export default function Fashion085Home() { return (
{/* Navbar */}

FASHION085

{/* Hero Section */}
Wear Your Thoughts 🔥

Viral meme tees, motivation hoodies & streetwear that speaks your mind.

{/* Categories */}
{[ { title: "Meme Tees", icon: Flame }, { title: "Motivation", icon: Sparkles }, { title: "Streetwear", icon: ShoppingCart }, ].map((item, i) => (

{item.title}

))}
{/* Featured Products */}

🔥 Trending Now

{[1,2,3].map((item) => (

Viral T-Shirt #{item}

Limited drop design

))}
{/* Footer */}
© 2026 Fashion085 — Wear Your Thoughts
); }

Comments