import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Avatar } from "@/components/ui/avatar"; import { Badge } from "@/components/ui/badge"; import { Separator } from "@/components/ui/separator"; import { LucideIcon } from "lucide-react"; const SteamProfilePage = () => { return (
{/* Header Section */}
Profile Avatar

Username

Level 50

Online
{/* Showcase Section */}

Showcase

Favorite Game

Game Name

Achievement

"Achievement Title"

Hours Played

500+ Hours

{/* Friends Section */}

Friends

{Array.from({ length: 5 }).map((_, index) => (
{`Friend

Friend {index + 1}

))}
{/* Recent Activity Section */}

Recent Activity

Game Name

2 hours played recently

Another Game

10 hours played recently

); }; export default SteamProfilePage;