-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31983ec
commit c541423
Showing
4 changed files
with
30 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,35 @@ | ||
<script lang="ts"> | ||
import { type Education } from '../../../types'; | ||
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 { type Education } from '../../../types'; | ||
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'; | ||
export let edu: Education; | ||
export let edu: Education; | ||
</script> | ||
|
||
<Card class="bg-background"> | ||
<CardHeader class="flex justify-items-center justify-center align-middle items-center"> | ||
<CardTitle class = "text-primary scroll-m-20 pb-2 sm:text-2xl text-xl font-semibold tracking-tight first:mt-0">{edu.degree}</CardTitle> | ||
<CardDescription class="flex flex-row items-center justify-center "> | ||
<span class="sm:text-lg text-md font-medium leading-none mr-2">{edu.dates}</span> | ||
</CardDescription> | ||
</CardHeader> | ||
<CardContent class="flex justify-center items-centers justify-items-center"> | ||
<!-- <p class="text-lg font-medium leading-none mr-2">{edu.school}</p> --> | ||
</CardContent> | ||
<Separator /> | ||
<CardFooter class="flex flex-row p-4 w-full justify-evenly"> | ||
<a href="https://www.wgu.edu/" class="sm:text-lg text-md font-medium leading-none mr-2">{edu.school}, {edu.location}</a> | ||
</CardFooter> | ||
</Card> | ||
<CardHeader class="flex items-center justify-center justify-items-center align-middle"> | ||
<CardTitle | ||
class="scroll-m-20 pb-2 text-xl font-semibold tracking-tight text-primary first:mt-0 sm:text-2xl" | ||
>{edu.degree}</CardTitle | ||
> | ||
<CardDescription class="flex flex-row items-center justify-center "> | ||
<span class="text-md mr-2 font-medium leading-none sm:text-lg">{edu.dates}</span> | ||
</CardDescription> | ||
</CardHeader> | ||
<CardContent class="items-centers flex justify-center justify-items-center"></CardContent> | ||
<Separator /> | ||
<CardFooter class="flex w-full flex-row justify-evenly p-4"> | ||
<a href="https://www.wgu.edu/" class="text-md mr-2 font-medium leading-none sm:text-lg" | ||
>{edu.school}, {edu.location}</a | ||
> | ||
</CardFooter> | ||
</Card> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters