Posts

Showing posts from August, 2025

Resume

import { useState } from 'react' import { Button } from "/components/ui/button" import { Input } from "/components/ui/input" import { Textarea } from "/components/ui/textarea" import { Card, CardContent, CardHeader, CardTitle } from "/components/ui/card" import { Label } from "/components/ui/label" type Education = { institution: string degree: string startDate: string endDate: string } type Experience = { company: string position: string startDate: string endDate: string description: string } export default function ResumeGenerator() { const [personalInfo, setPersonalInfo] = useState({ name: '', email: '', phone: '', address: '', summary: '' }) const [educations, setEducations] = useState ([{ institution: '', degree: '', startDate: '', endDate: '' }]) const [experiences, setExperiences] = ...