Skip to content

Commit

Permalink
update resume and contact page. Improve appearance in both light/dark…
Browse files Browse the repository at this point in the history
… modes
  • Loading branch information
dubscode committed Sep 2, 2024
1 parent 0904d75 commit 41b3556
Show file tree
Hide file tree
Showing 11 changed files with 228 additions and 266 deletions.
7 changes: 1 addition & 6 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ export default function AboutPage() {
</CardHeader>
<CardContent className='flex flex-col items-center'>
<div className='relative mb-4 h-48 w-48 overflow-hidden rounded-full'>
<Image
src={wiseioIcon}
alt='Dan Wise'
layout='fill'
objectFit='cover'
/>
<Image src={wiseioIcon} alt='Dan Wise Logo' />
</div>
<div className='text-center'>
<p className='mb-2 text-muted-foreground'>
Expand Down
5 changes: 4 additions & 1 deletion app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import { LetterText, Mail, MapPin, Phone } from 'lucide-react';

import { Button } from '@/components/ui/button';
import { EmailLink } from '@/components/email/email-link';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import Link from 'next/link';
Expand Down Expand Up @@ -133,7 +134,9 @@ export default function ContactPage() {
<div className='space-y-4'>
<div className='flex items-center space-x-2'>
<Mail className='h-5 w-5 text-muted-foreground' />
<span>[email protected]</span>
<span>
<EmailLink subject='Your portfolio' />
</span>
</div>
<div className='flex items-center space-x-2'>
<Phone className='h-5 w-5 text-muted-foreground' />
Expand Down
Loading

0 comments on commit 41b3556

Please sign in to comment.