diff --git a/src/app/page.tsx b/src/app/page.tsx index 2659d05..f66fd7a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,20 +1,10 @@ import Image, { type ImageProps } from 'next/image' -import Link from 'next/link' import clsx from 'clsx' import { Button } from '@/components/Button' import { Card } from '@/components/Card' import { Container } from '@/components/Container' -import { - GitHubIcon, - InstagramIcon, - LinkedInIcon, - TwitterIcon, -} from '@/components/SocialIcons' -import logoAirbnb from '@/images/logos/airbnb.svg' -import logoFacebook from '@/images/logos/facebook.svg' -import logoPlanetaria from '@/images/logos/planetaria.svg' -import logoStarbucks from '@/images/logos/starbucks.svg' +import { CalendarDaysIcon, EnvelopeIcon } from '@heroicons/react/24/solid' import image1 from '@/images/photos/image-1.jpg' import image2 from '@/images/photos/image-2.jpg' import image3 from '@/images/photos/image-3.jpg' @@ -23,65 +13,6 @@ import image5 from '@/images/photos/image-5.jpg' import { type BlogPostWithSlug, getAllBlogPosts } from '@/lib/articles' import { formatDate } from '@/lib/formatDate' -function MailIcon(props: React.ComponentPropsWithoutRef<'svg'>) { - return ( - - ) -} - -function BriefcaseIcon(props: React.ComponentPropsWithoutRef<'svg'>) { - return ( - - ) -} - -function ArrowDownIcon(props: React.ComponentPropsWithoutRef<'svg'>) { - return ( - - ) -} - function Article({ article }: { article: BlogPostWithSlug }) { return ( @@ -97,19 +28,6 @@ function Article({ article }: { article: BlogPostWithSlug }) { ) } -function SocialLink({ - icon: Icon, - ...props -}: React.ComponentPropsWithoutRef & { - icon: React.ComponentType<{ className?: string }> -}) { - return ( - - - - ) -} - function Newsletter() { return (

- + Stay up to date

- Get notified when I publish something new, and unsubscribe at any time. + Get notified about upcoming events and stay in touch with the community.

-
- -
-
Company
+
Title
- {role.company} -
-
Role
-
- {role.title} + {meeting.title}
Date
-
- {' '} - {' '} - +
+ {meeting.date}
+
Time
+ {meeting.endTime + ?
+ {' '} + {' '} + {' '} +
+ :
+ {' '} +
+ }
) } -function Resume() { - let resume: Array = [ +function Events() { + let events: Array = [ { - company: 'Planetaria', - title: 'CEO', - logo: logoPlanetaria, - start: '2019', - end: { - label: 'Present', - dateTime: new Date().getFullYear().toString(), - }, + title: 'Christmas Potluck', + date: '2023-12-16', + startTime: '6:00pm', }, { - company: 'Airbnb', - title: 'Product Designer', - logo: logoAirbnb, - start: '2014', - end: '2019', - }, - { - company: 'Facebook', - title: 'iOS Software Engineer', - logo: logoFacebook, - start: '2011', - end: '2014', - }, - { - company: 'Starbucks', - title: 'Shift Supervisor', - logo: logoStarbucks, - start: '2008', - end: '2011', + title: 'Member Meeting', + date: '2023-12-20', + startTime: '6:00pm', + endTime: '8:00pm', + notes: 'Bring your own chair.' }, ] return (

- - Work + + Upcoming Events

    - {resume.map((role, roleIndex) => ( - + {events.map((meeting, idx) => ( + ))}
) @@ -276,33 +171,14 @@ export default async function Home() { West Sound Community Hall

- WestSound Community Hall, located at 884 Deer Harbor Road in the hamlet of West Sound, has served as a public assembly hall since it was built by volunteers in 1902. + The West Sound Community Hall is located in the hamlet of West Sound + on Orcas Island, about 10 minutes from the ferry landing and + Eastsound. It has served as a public assembly hall since it was + built by volunteers in 1902.

Facing West Sound, the Hall is at the heart of the WestSound community.

-
- - - - -
@@ -315,7 +191,7 @@ export default async function Home() {
- +