import { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; export default function GamingWebsite() { const [games] = useState([ { name: "Roleplay Server", genre: "FPS", players: "Online" }, { name: "Police Simulator", genre: "RPG", players: "Singleplayer" }, { name: "Drift Arena", genre: "Racing", players: "Multiplayer" }, ]); return (
{/* Header */}

🎮 NovaPlay

{/* Hero Section */}
Welcome to NovaPlay

Join our custom gaming community – no external platforms, just our own games and servers.

{/* Games Section */}

Our Servers & Games

{games.map((game, i) => (

{game.name}

Genre: {game.genre}

Mode: {game.players}

))}
{/* Footer */}
); }