import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Search } from "lucide-react"; export default function FakeRoblox() { return (
{/* Header */}

FakeBlox

{/* Main Content */}
{[1, 2, 3, 4, 5, 6, 7, 8].map((game) => (

Game {game}

by User{game}

))}
); }