Skip to content

Commit

Permalink
feat: init 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
Karnak19 committed Jan 15, 2024
1 parent 69f97da commit a98d023
Show file tree
Hide file tree
Showing 23 changed files with 93 additions and 941 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Bartosz Jarocki
Copyright (c) 2023 Basile Vernouillet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Binary file modified src/app/favicon.ico
Binary file not shown.
8 changes: 4 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Badge } from "@/components/ui/badge";
import { CommandMenu } from "@/components/command-menu";
import { Metadata } from "next";
import { Section } from "@/components/ui/section";
import { GlobeIcon, MailIcon, PhoneIcon } from "lucide-react";
import { GlobeIcon, MailIcon, MapPinnedIcon, PhoneIcon } from "lucide-react";
import { Button } from "@/components/ui/button";
import { RESUME_DATA } from "@/data/resume-data";
import { ProjectCard } from "@/components/project-card";
Expand All @@ -16,7 +16,7 @@ export const metadata: Metadata = {

export default function Page() {
return (
<main className="container relative mx-auto scroll-my-12 overflow-auto p-4 print:p-12 md:p-16">
<main className="container relative mx-auto scroll-my-12 overflow-auto p-4 md:p-16 print:p-12">
<section className="mx-auto w-full max-w-2xl space-y-8 bg-white print:space-y-6">
<div className="flex items-center justify-between">
<div className="flex-1 space-y-1.5">
Expand All @@ -30,7 +30,7 @@ export default function Page() {
href={RESUME_DATA.locationLink}
target="_blank"
>
<GlobeIcon className="size-3" />
<MapPinnedIcon className="size-3" />
{RESUME_DATA.location}
</a>
</p>
Expand Down Expand Up @@ -169,7 +169,7 @@ export default function Page() {

<Section className="print-force-new-page scroll-mb-16">
<h2 className="text-xl font-bold">Projects</h2>
<div className="-mx-3 grid grid-cols-1 gap-3 print:grid-cols-3 print:gap-2 md:grid-cols-2 lg:grid-cols-3">
<div className="-mx-3 grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-3 print:grid-cols-3 print:gap-2">
{RESUME_DATA.projects.map((project) => {
return (
<ProjectCard
Expand Down
Loading

0 comments on commit a98d023

Please sign in to comment.