feat: add image assets

This commit is contained in:
Prad Nukala
2023-09-10 13:24:12 -04:00
parent 97eb105ce1
commit 0cfaa83e36
10 changed files with 13657 additions and 35 deletions
+3 -2
View File
@@ -8,6 +8,7 @@ import {
GitHubIcon,
InstagramIcon,
LinkedInIcon,
MediumIcon,
TwitterIcon,
} from '@/components/SocialIcons'
import portraitImage from '@/images/portrait.jpg'
@@ -106,8 +107,8 @@ export default function About() {
<SocialLink href="#" icon={TwitterIcon}>
Follow on Twitter
</SocialLink>
<SocialLink href="#" icon={InstagramIcon} className="mt-4">
Follow on Instagram
<SocialLink href="#" icon={MediumIcon} className="mt-4">
Follow on Medium
</SocialLink>
<SocialLink href="#" icon={GitHubIcon} className="mt-4">
Follow on GitHub
+10 -9
View File
@@ -9,12 +9,13 @@ import {
GitHubIcon,
InstagramIcon,
LinkedInIcon,
MediumIcon,
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 logoAirbnb from '@/images/logos/spacebolt.svg'
import logoFacebook from '@/images/logos/voluntree.svg'
import logoPlanetaria from '@/images/logos/sonr.svg'
import logoStarbucks from '@/images/logos/superball.svg'
import image1 from '@/images/photos/image-1.jpg'
import image2 from '@/images/photos/image-2.jpg'
import image3 from '@/images/photos/image-3.jpg'
@@ -190,7 +191,7 @@ function Resume() {
company: 'Sonr',
title: 'Founder',
logo: logoPlanetaria,
start: '2019',
start: '2020',
end: {
label: 'Present',
dateTime: new Date().getFullYear().toString(),
@@ -256,7 +257,7 @@ function Photos() {
src={image}
alt=""
sizes="(min-width: 640px) 18rem, 11rem"
className="absolute inset-0 h-full w-full object-cover"
className="absolute inset-0 h-full w-full object-cover rounded-full"
/>
</div>
))}
@@ -288,9 +289,9 @@ export default async function Home() {
icon={TwitterIcon}
/>
<SocialLink
href="https://instagram.com"
aria-label="Follow on Instagram"
icon={InstagramIcon}
href="https://medium.com/@prnk28"
aria-label="Follow on Medium"
icon={MediumIcon}
/>
<SocialLink
href="https://github.com/prnk28"
+29 -24
View File
@@ -3,61 +3,66 @@ import Image from 'next/image'
import { Card } from '@/components/Card'
import { SimpleLayout } from '@/components/SimpleLayout'
import logoAnimaginary from '@/images/logos/animaginary.svg'
import logoCosmos from '@/images/logos/cosmos.svg'
import logoHelioStream from '@/images/logos/helio-stream.svg'
import logoOpenShuttle from '@/images/logos/open-shuttle.svg'
import logoPlanetaria from '@/images/logos/planetaria.svg'
import logoSuperball from '@/images/logos/superball.svg'
import logoVoluntree from '@/images/logos/voluntree.svg'
import logoSpacebolt from '@/images/logos/spacebolt.svg'
import logoYue from '@/images/logos/yue.svg'
import logoSonr from '@/images/logos/sonr.svg'
const projects = [
{
name: 'Sonr',
created: '2020 - Present',
description:
'Creating technology to empower civilians to explore space on their own terms.',
link: { href: 'http://planetaria.tech', label: 'planetaria.tech' },
logo: logoPlanetaria,
logo: logoSonr,
},
{
name: 'Yue',
created: '2018 - 2019',
description:
'High performance web animation library, hand-written in optimized WASM.',
link: { href: '#', label: 'github.com' },
logo: logoAnimaginary,
},
{
name: 'ML Livestock Detection',
description:
'Real-time video streaming library, optimized for interstellar transmission.',
link: { href: '#', label: 'github.com' },
logo: logoHelioStream,
},
{
name: 'AR Whiteboard',
description:
'The operating system that powers our Sonr space shuttles.',
link: { href: '#', label: 'github.com' },
logo: logoCosmos,
logo: logoYue,
},
// {
// name: 'ML Livestock Detection',
// description:
// 'Real-time video streaming library, optimized for interstellar transmission.',
// link: { href: '#', label: 'github.com' },
// logo: logoHelioStream,
// },
// {
// name: 'AR Whiteboard',
// description:
// 'The operating system that powers our Sonr space shuttles.',
// link: { href: '#', label: 'github.com' },
// logo: logoCosmos,
// },
{
name: 'Spacebolt',
created: '2017 - 2018',
description:
'The schematics for the first rocket I designed that successfully made it to orbit.',
link: { href: '#', label: 'github.com' },
logo: logoOpenShuttle,
logo: logoSpacebolt,
},
{
name: 'VolunTree',
created: '2015 - 2016',
description:
'The schematics for the first rocket I designed that successfully made it to orbit.',
link: { href: '#', label: 'github.com' },
logo: logoOpenShuttle,
logo: logoVoluntree,
},
{
name: 'Superball',
created: '2010 - 2011',
description:
'The schematics for the first rocket I designed that successfully made it to orbit.',
link: { href: '#', label: 'github.com' },
logo: logoOpenShuttle,
logo: logoSuperball,
},
]