Skip to content

Commit

Permalink
add builder to profile subheadline; add spectral to projects;
Browse files Browse the repository at this point in the history
  • Loading branch information
noynovera committed Dec 16, 2024
1 parent f9d0306 commit cf91fe0
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 75 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app/components/home/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function HomeProfile() {
</div>
<div className="py-3">
<h1 className="font-black text-2xl">Noy Novera</h1>
<p>Curious Software Engineer</p>
<p>Curious Software Engineer | Builder</p>
</div>
<div className="py-3">
<p>
Expand Down
156 changes: 82 additions & 74 deletions apps/web/src/app/components/home/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export default function HomeProjects() {
<IoMdPerson />
<Link className="flex items-center"
target="_blank"
href="#">
<FaLink />
href="https://github.com/nynvr/spectral">
<IoLogoGithub />
</Link>
</div>
<CardTitle>
Expand All @@ -65,10 +65,86 @@ export default function HomeProjects() {
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>
A cloud-based tool utilizing msconvert to transform between various mass spectrometry data formats
</CardContent>
<CardFooter className="text-xl"></CardFooter>
<CardContent>[2024-DEC] A cloud-based tool utilizing msconvert to transform between various mass spectrometry data formats</CardContent>
<CardFooter className="text-xl">
<TechStackItemC
items={[
{ icon: SiDjango, name: "Django" },
{ icon: RiNextjsFill, name: "Next.js" },
{ icon: SiShadcnui, name: "Shadcn UI" },
{ icon: BiLogoPostgresql, name: "PostgreSQL" },
{ icon: GrDocker, name: "Docker" }
]}
/>
</CardFooter>
</Card>

<Card className="w-[350px]">
<CardHeader>
<div className="flex justify-start gap-2 text-sm content-center pb-2">
<RiCheckboxMultipleFill />
<IoMdPerson />
<Link className="flex items-center"
target="_blank"
href="https://github.com/nynvr/django-nextjs-postgresql-template">
<IoLogoGithub />
</Link>
</div>
<CardTitle>
<Link className="flex items-center"
target="_blank"
href="#">
Django + Next.js + PostgreSQL Template
</Link>
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>[2024-DEC] Project template for building Django + Next.js + PostgreSQL applications containerized with Docker Compose</CardContent>
<CardFooter className="text-xl">
<TechStackItemC
items={[
{ icon: SiDjango, name: "Django" },
{ icon: RiNextjsFill, name: "Next.js" },
{ icon: SiShadcnui, name: "Shadcn UI" },
{ icon: BiLogoPostgresql, name: "PostgreSQL" },
{ icon: GrDocker, name: "Docker" }
]}
/>
</CardFooter>
</Card>

<Card className="w-[350px]">
<CardHeader>
<div className="flex justify-start gap-2 text-sm content-center pb-2">
<RiCheckboxMultipleFill />
<IoMdPerson />
<Link className="flex items-center"
target="_blank"
href="https://github.com/nynvr/fastapi-nextjs-postgresql-template">
<IoLogoGithub />
</Link>
</div>
<CardTitle>
<Link className="flex items-center"
target="_blank"
href="#">
FastAPI + Next.js + PostgreSQL Template
</Link>
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>[2024-DEC] Project template for building FastAPI + Next.js + PostgreSQL applications containerized with Docker Compose</CardContent>
<CardFooter className="text-xl">
<TechStackItemC
items={[
{ icon: SiFastapi, name: "FastAPI" },
{ icon: RiNextjsFill, name: "Next.js" },
{ icon: RiTailwindCssFill, name: "Tailwind CSS" },
{ icon: BiLogoPostgresql, name: "PostgreSQL" },
{ icon: GrDocker, name: "Docker" }
]}
/>
</CardFooter>
</Card>

<Card className="w-[350px]">
Expand Down Expand Up @@ -252,74 +328,6 @@ export default function HomeProjects() {
</CardContent>
<CardFooter className="text-xl"></CardFooter>
</Card>

<Card className="w-[350px]">
<CardHeader>
<div className="flex justify-start gap-2 text-sm content-center pb-2">
<RiCheckboxMultipleFill />
<IoMdPerson />
<Link className="flex items-center"
target="_blank"
href="https://github.com/nynvr/fastapi-nextjs-postgresql-template">
<IoLogoGithub />
</Link>
</div>
<CardTitle>
<Link className="flex items-center"
target="_blank"
href="https://nynvr.io/">
FastAPI + Next.js + PostgreSQL Template
</Link>
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>[2024-DEC] Project template for building FastAPI + Next.js + PostgreSQL applications containerized with Docker Compose</CardContent>
<CardFooter className="text-xl">
<TechStackItemC
items={[
{ icon: SiFastapi, name: "FastAPI" },
{ icon: RiNextjsFill, name: "Next.js" },
{ icon: RiTailwindCssFill, name: "Tailwind CSS" },
{ icon: BiLogoPostgresql, name: "PostgreSQL" },
{ icon: GrDocker, name: "Docker" }
]}
/>
</CardFooter>
</Card>

<Card className="w-[350px]">
<CardHeader>
<div className="flex justify-start gap-2 text-sm content-center pb-2">
<RiCheckboxMultipleFill />
<IoMdPerson />
<Link className="flex items-center"
target="_blank"
href="https://github.com/nynvr/django-nextjs-postgresql-template">
<IoLogoGithub />
</Link>
</div>
<CardTitle>
<Link className="flex items-center"
target="_blank"
href="https://nynvr.io/">
Django + Next.js + PostgreSQL Template
</Link>
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>[2024-OCT] Project template for building Django + Next.js + PostgreSQL applications containerized with Docker Compose</CardContent>
<CardFooter className="text-xl">
<TechStackItemC
items={[
{ icon: SiDjango, name: "Django" },
{ icon: RiNextjsFill, name: "Next.js" },
{ icon: SiShadcnui, name: "Shadcn UI" },
{ icon: BiLogoPostgresql, name: "PostgreSQL" },
{ icon: GrDocker, name: "Docker" }
]}
/>
</CardFooter>
</Card>
</div>
</div>
</div>
Expand Down

0 comments on commit cf91fe0

Please sign in to comment.