Skip to content

Commit

Permalink
Andy WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
adamplesnik committed Nov 15, 2024
1 parent 73f78bf commit 43f55be
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WorkTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Heading from './Heading'

const WorkTile = ({ children, title, links, className }: WorkTileWrapperProps) => {
return (
<div className={clsx('flex min-h-svh w-full flex-col gap-12 p-12', className)}>
<div className={clsx('flex min-h-svh w-full flex-col gap-8 p-12', className)}>
{title && (
<Heading size={2} className="sticky top-8">
{title}
Expand Down
28 changes: 28 additions & 0 deletions src/content/WorkAndy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import Paragraph from '@/components/Paragraph'
import WorkTile from '@/components/WorkTile'
import andyAlt from './images/andy-alt.png'
import andyBadge from './images/andy-badge.jpg'
import andyMain from './images/andy-main.png'

const WorkAndy = () => {
return (
<WorkTile title="Andy Warhol museum logo">
<Paragraph>
This is me dipping toes into logo waters. Nobody actually asked for it, it just struck me,
after visiting the museum, that it should have a more solid identity, given the greatness of
the king of pop art.
</Paragraph>
<div className="grid grid-flow-row-dense grid-cols-2 gap-4">
<img src={andyMain} className="w-full" />
<img src={andyAlt} className="w-full" />
<img src={andyBadge} className="w-full" />
</div>
<div className="flex flex-col gap-4 md:flex-row">
<div className="md:flex-[2]"></div>
<div className="md:flex-1"></div>
</div>
</WorkTile>
)
}

export default WorkAndy
7 changes: 7 additions & 0 deletions src/content/WorkKolbord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ const WorkKolbord = () => {
Opinionated, free to use, and open source app for two-click reservation of anything.
Prototyped in Figma, coded in React, Payload CMS, with user management in Clerk.
</Paragraph>
<div className="flex flex-col gap-8 md:flex-row">
<div className="aspect-[4_/_3] bg-red-100 md:flex-[2]">h</div>
<div className="flex flex-col gap-8 md:flex-1">
<div className="aspect-square bg-red-200"></div>
<div className="aspect-square bg-red-200"></div>
</div>
</div>
</WorkTile>
)
}
Expand Down
Binary file added src/content/images/andy-alt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/images/andy-badge.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/images/andy-main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/images/andy-wall.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import AboutMe from '@/content/AboutMe'
import Chart from '@/content/Chart'
import Footer from '@/content/Footer'
import Intro from '@/content/Intro'
import WorkAndy from '@/content/WorkAndy'
import WorkKolbord from '@/content/WorkKolbord'
import WorkScrollDriven from '@/content/WorkScrollDriven'
import WorkScrollDrivenShowcase from '@/content/WorkScrolldrivenShowcase'
Expand All @@ -15,6 +16,7 @@ const Home = () => {
<WorkKolbord />
<WorkScrollDriven />
<WorkScrollDrivenShowcase />
<WorkAndy />
<WorkWebUmenia />
<AboutMe />
<Footer />
Expand Down

0 comments on commit 43f55be

Please sign in to comment.