From c541423ba9317cf1f3ec67370648187dc3efba71 Mon Sep 17 00:00:00 2001 From: Xavier Loera Flores Date: Sat, 1 Jun 2024 15:19:14 -0700 Subject: [PATCH] close #86 Clean up --- .../education/education-card.svelte | 50 +++++++++++-------- src/lib/components/education/education.svelte | 12 ----- src/lib/components/header/header.svelte | 4 -- src/lib/index.ts | 1 - 4 files changed, 30 insertions(+), 37 deletions(-) diff --git a/src/lib/components/education/education-card.svelte b/src/lib/components/education/education-card.svelte index 25b5ce1..8904248 100644 --- a/src/lib/components/education/education-card.svelte +++ b/src/lib/components/education/education-card.svelte @@ -1,25 +1,35 @@ - - {edu.degree} - - {edu.dates} - - - - - - - - {edu.school}, {edu.location} - - \ No newline at end of file + + {edu.degree} + + {edu.dates} + + + + + + {edu.school}, {edu.location} + + diff --git a/src/lib/components/education/education.svelte b/src/lib/components/education/education.svelte index 82f3934..f219d9b 100644 --- a/src/lib/components/education/education.svelte +++ b/src/lib/components/education/education.svelte @@ -2,22 +2,10 @@ import EducationCard from '$lib/components/education/education-card.svelte'; import { type Education } from '../../../types'; import { Section, Button } from '$lib'; - import { toast } from 'svelte-sonner'; - import { - Card, - CardContent, - CardTitle, - CardDescription, - CardFooter, - CardHeader - } from '$lib/components/ui/card'; import { GraduationCap } from 'lucide-svelte'; - import { Separator } from '$lib/components/ui/separator'; - import { Tabs, Trigger, Content, List } from '$lib/components/ui/tabs'; import * as Carousel from '$lib/components/ui/carousel'; export let educationData: Education[] = []; - let degreeCount = educationData.length;
diff --git a/src/lib/components/header/header.svelte b/src/lib/components/header/header.svelte index 009b8af..6a34d96 100644 --- a/src/lib/components/header/header.svelte +++ b/src/lib/components/header/header.svelte @@ -72,9 +72,6 @@ Menu - Portfolio @@ -89,7 +86,6 @@ diff --git a/src/lib/index.ts b/src/lib/index.ts index 483f829..33a3b94 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,4 +1,3 @@ -// place files you want to import through the `$lib` alias in this folder. import { Hero } from './components/hero'; import { Particles } from './components/particles'; import { Header } from './components/header';