import React from 'react'; import { Settings, Package, Heart, Bell } from 'lucide-react'; import ListingCard from '@/components/ListingCard'; import { adts } from '@/data/adt'; import Header from '@/components/Header'; export default function Profile() { return ( <>
Profile

John Doe

San Francisco, CA

{adts.slice(0, 3).map((adt) => ( ))}
); }