Skip to content

Commit

Permalink
updates spacing, and adds levels internship
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-shetty committed Sep 28, 2024
1 parent 5c20111 commit 124cced
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 15 deletions.
4 changes: 4 additions & 0 deletions public/experiences/levels.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/achievements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Achievements({ params }: AchievementProps) {
? 3
: Number(params["show-achievements"]) || 3
return (
<section className="my-12">
<section className="my-16">
<H2>Achievements</H2>
<div className="grid gap-4">
{achievements.map(
Expand Down
2 changes: 1 addition & 1 deletion src/components/experience.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Link from "next/link"

export default function Experience() {
return (
<section className="my-12">
<section className="my-16">
<H2>Experience</H2>
<div className="grid lg:grid-cols-2 gap-4">
{experiences.map((experience) => (
Expand Down
10 changes: 5 additions & 5 deletions src/components/home.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import Image from "next/image"
import ProfileImg from "@/assets/images/Deveesh.jpg"
import Link from "next/link"
import { icons as Icon } from "@/lib/icons"
import { H1 } from "@/components/ui/headers"
import Button from "@/components/ui/button"
import { H1 } from "@/components/ui/headers"
import { siteConfig } from "@/lib/config"
import { icons as Icon } from "@/lib/icons"
import Image from "next/image"
import Link from "next/link"

function Home() {
return (
<main className="flex flex-col-reverse xl:flex-row items-center gap-16 py-8">
<main className="flex flex-col-reverse xl:flex-row items-center gap-16 my-16">
<div className="flex flex-col gap-8">
<div className="flex flex-col gap-4">
<H1>Deveesh Shetty</H1>
Expand Down
12 changes: 6 additions & 6 deletions src/components/projects.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import Image from "next/image"
import { icons as Icon } from "@/lib/icons"
import Link from "next/link"
import { projects } from "@/lib/projects"
import { SearchParamsType } from "@/app/page"
import { H2, H3 } from "@/components/ui/headers"
import Button from "@/components/ui/button"
import { H2, H3 } from "@/components/ui/headers"
import { icons as Icon } from "@/lib/icons"
import { projects } from "@/lib/projects"
import Image from "next/image"
import Link from "next/link"

type ProjectProps = {
params: SearchParamsType
Expand All @@ -21,7 +21,7 @@ function Projects({ params }: ProjectProps) {
: Number(params["show-projects"]) || 3

return (
<section className="my-8">
<section className="my-16">
<H2>Projects</H2>
<div className="grid gap-6">
{projects.map(
Expand Down
2 changes: 1 addition & 1 deletion src/components/talks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Link from "next/link"

export default function Talks() {
return (
<section className="my-12">
<section className="my-16">
<H2>Talks and Workshops</H2>
<div className="grid gap-4">
{talks.map((talk) => (
Expand Down
2 changes: 1 addition & 1 deletion src/components/tech-stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { icons as Icon } from "@/lib/icons"

function TechStack() {
return (
<section className="py-8">
<section className="my-16">
<H2>Tech Stack</H2>
<div className="grid grid-cols-5 outline outline-1 outline-slate-700 text-xl md:text-2xl">
<div className="col-span-5 flex flex-wrap py-8 gap-8 outline outline-1 -outline-offset-4 outline-slate-700 px-4 items-center">
Expand Down
11 changes: 11 additions & 0 deletions src/lib/experiences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,15 @@ export const experiences = [
startDate: "Apr 2024",
endDate: null,
},
{
id: uuid(),
title: "Frontend Engineer Intern",
organization: {
name: "Levels.fyi",
url: "https://www.levels.fyi/",
logo: "/experiences/levels.svg",
},
startDate: "Sep 2024",
endDate: null,
},
].sort((a, b) => Date.parse(a.startDate) - Date.parse(b.startDate))

0 comments on commit 124cced

Please sign in to comment.