Skip to content

Commit

Permalink
Merge pull request #16 from andostronaut/develop
Browse files Browse the repository at this point in the history
feat: update ui to the start to the left and remove skills
  • Loading branch information
andostronaut authored Jul 16, 2024
2 parents 82ea42f + f0d33b0 commit 1daa9a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 30 deletions.
19 changes: 6 additions & 13 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,15 @@ export default function Page() {
</section>
<section id="about">
<BlurFade delay={BLUR_FADE_DELAY * 4}>
<Markdown className="prose max-w-full text-pretty font-sans text-md text-muted-foreground dark:prose-invert text-center">
<Markdown className="prose max-w-full text-pretty font-sans text-md text-muted-foreground dark:prose-invert">
{DATA.description}
</Markdown>
</BlurFade>
<div className="flex flex-wrap gap-1 mt-4 justify-center">
{DATA.skills.map((skill, id) => (
<BlurFade key={skill} delay={BLUR_FADE_DELAY * 10 + id * 0.05}>
<Badge key={skill}>{skill}</Badge>
</BlurFade>
))}
</div>
</section>
<section id="projects">
<div className="space-y-12 w-full py-12">
<BlurFade delay={BLUR_FADE_DELAY * 11}>
<div className="flex flex-col items-center justify-center space-y-4 text-center">
<div className="flex flex-col items-center justify-center space-y-4">
<div className="space-y-2">
<div className="inline-block rounded-lg bg-foreground text-background px-3 py-1 text-sm">
My Projects
Expand Down Expand Up @@ -86,7 +79,7 @@ export default function Page() {
</div>
</section>
<section id="contact">
<div className="grid items-center justify-center gap-4 px-4 text-center md:px-6 w-full py-12">
<div className="grid w-full py-12">
<BlurFade delay={BLUR_FADE_DELAY * 16}>
<div className="space-y-3">
<div className="inline-block rounded-lg bg-foreground text-background px-3 py-1 text-sm">
Expand All @@ -95,11 +88,11 @@ export default function Page() {
<h2 className="text-3xl font-bold tracking-tighter sm:text-5xl">
Get in Touch
</h2>
<p className="mx-auto max-w-[600px] text-muted-foreground md:text-md/relaxed lg:text-base/relaxed xl:text-md/relaxed">
Want to connect? Send me a{' '}
<p className="mx-auto text-muted-foreground md:text-md/relaxed lg:text-base/relaxed xl:text-md/relaxed">
Want to connect? Send me a
<Link
href={DATA.contact.social.X.url}
className="text-black underline font-semibold hover:underline dark:text-white"
className="text-black underline font-semibold hover:underline dark:text-white ml-1"
>
direct message on X
</Link>
Expand Down
17 changes: 0 additions & 17 deletions data/resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,6 @@ export const DATA = {
locationLink: 'https://www.google.com/maps/place/antananarivo',
description:
"I'm a software developer, open source enthusiast, and community builder. My experience includes leading workshops on AI, showcasing my versatility and commitment to the tech field.",
skills: [
'React',
'Next.js',
'Typescript',
'Deno',
'Node.js',
'Python',
'Go',
'Postgres',
'Docker',
'Rust',
'Vue.js',
'Express.js',
'Bun',
'GraphQL',
'Supabase',
],
navbar: [
{ href: '/', icon: HomeIcon, label: 'Home' },
{ href: '#', icon: CodeIcon, label: 'Projects' },
Expand Down

0 comments on commit 1daa9a2

Please sign in to comment.