completionId: cgen-7740acb5d9fa467b8190bb01f575a458
cgen-7740acb5d9fa467b8190bb01f575a458
This commit is contained in:
parent
091e411f3c
commit
60634ecd01
1 changed files with 0 additions and 37 deletions
|
|
@ -1,41 +1,4 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import {
|
||||
Select,
|
||||
SelectContent,
|
||||
SelectItem,
|
||||
SelectTrigger,
|
||||
SelectValue,
|
||||
} from "@/components/ui/select";
|
||||
import {
|
||||
Users,
|
||||
Search,
|
||||
Github,
|
||||
Briefcase,
|
||||
MapPin,
|
||||
Trophy,
|
||||
MessageSquare,
|
||||
} from "lucide-react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import { supabase } from "@/lib/supabase";
|
||||
|
||||
interface DevProfile {
|
||||
id: string;
|
||||
user_id: string;
|
||||
full_name: string;
|
||||
avatar_url?: string;
|
||||
bio?: string;
|
||||
skills: string[];
|
||||
experience_level: "beginner" | "intermediate" | "advanced" | "expert";
|
||||
looking_for?: string;
|
||||
portfolio_url?: string;
|
||||
github_url?: string;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export default function DevLinkProfiles() {
|
||||
const navigate = useNavigate();
|
||||
|
|
|
|||
Loading…
Reference in a new issue