Skip to content

Commit e5bed66

Browse files
committed
d
1 parent ef7e72b commit e5bed66

26 files changed

+1074
-17810
lines changed

app/Main.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import Portfolio from '@/components/new/portfolio'
44
export default function Home() {
55
return (
66
<>
7-
<StickyMenu />
8-
<Portfolio/>
9-
{/*
7+
<StickyMenu />
8+
<Portfolio />
9+
{/*
1010
<HomeMain />
1111
<SkillsSlider />s
1212
<ProjectCardBanner />

app/layout.tsx

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,10 @@ export default function RootLayout({ children }: { children: React.ReactNode })
100100
<Analytics analyticsConfig={siteMetadata.analytics as AnalyticsConfig} />
101101
<SectionContainer>
102102
<SearchProvider searchConfig={siteMetadata.search as SearchConfig}>
103-
104-
105-
<div className='background-pattern'>
106-
107-
108-
<Header />
109-
</div>
103+
<div className="background-pattern">
104+
<Header />
105+
</div>
110106
<main className="mb-auto">{children}</main>
111-
112107
</SearchProvider>
113108
</SectionContainer>
114109
</ThemeProviders>

app/tag-data.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"hostinger": 1,
2020
"git": 1,
2121
"javascript": 1,
22-
"nodejs": 2,
23-
"roadmap": 1,
2422
"nextauth": 1,
2523
"autenticacion": 2,
2624
"supabase": 1,
25+
"nodejs": 2,
26+
"roadmap": 1,
2727
"mongodb": 1,
2828
"comandos": 2,
2929
"bases-de-datos": 1,

components/Header.tsx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ const Header = () => {
1616
return (
1717
<header className={headerClass}>
1818
<Link href="/" aria-label={siteMetadata.headerTitle}>
19-
<div className="flex items-center justify-between">
20-
{/* —— Mobile (≤ 767 px): compact icon —— */}
21-
<Logo className="h-14 w-14 block md:hidden" />
19+
<div className="flex items-center justify-between">
20+
{/* —— Mobile (≤ 767 px): compact icon —— */}
21+
<Logo className="block h-14 w-14 md:hidden" />
2222

23-
{/* —— Desktop (≥ 768 px): full word‑mark —— */}
24-
<Image
25-
src="/dark.png"
26-
alt="Brand logo"
27-
width={208}
28-
height={60}
29-
className="hidden md:block w-52"
30-
priority
31-
/>
32-
</div>
23+
{/* —— Desktop (≥ 768 px): full word‑mark —— */}
24+
<Image
25+
src="/dark.png"
26+
alt="Brand logo"
27+
width={208}
28+
height={60}
29+
className="hidden w-52 md:block"
30+
priority
31+
/>
32+
</div>
3333
</Link>
3434
<div className="flex items-center space-x-4 leading-5 sm:space-x-6">
3535
<div className="no-scrollbar hidden max-w-40 items-center space-x-4 overflow-x-auto pr-2 sm:flex sm:space-x-6 md:max-w-72 lg:max-w-96">

components/SectionContainer.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ interface Props {
55
}
66

77
export default function SectionContainer({ children }: Props) {
8-
return (
9-
<section className="mx-auto max-w-13xl px-4 sm:px-6 xl:px-0">{children}</section>
10-
)
8+
return <section className="max-w-13xl mx-auto px-4 sm:px-6 xl:px-0">{children}</section>
119
}

components/new/Contact.tsx

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
1-
import { MapPin, Mail } from "lucide-react";
2-
import ContactForm from "./ContactForm";
1+
import { MapPin, Mail } from 'lucide-react'
2+
import ContactForm from './ContactForm'
33

44
export default function Contact() {
55
return (
66
<section
77
aria-labelledby="contact-heading"
8-
className="bg-black text-white px-4 py-12 sm:px-6 lg:px-8"
8+
className="bg-black px-4 py-12 text-white sm:px-6 lg:px-8"
99
>
1010
<div className="mx-auto max-w-7xl">
11-
<div className="lg:grid lg:grid-cols-2 lg:gap-12 lg:items-start">
11+
<div className="lg:grid lg:grid-cols-2 lg:items-start lg:gap-12">
1212
{/* —————————————————— Copy block —————————————————— */}
1313
<div>
14-
<h2
15-
id="contact-heading"
16-
className="text-4xl font-extrabold sm:text-5xl"
17-
>
14+
<h2 id="contact-heading" className="text-4xl font-extrabold sm:text-5xl">
1815
Let’s talk.
1916
</h2>
2017
<p className="mt-4 text-lg text-neutral-400">
21-
Got a project in mind, a question, or just want to say hi? I’m all
22-
ears—drop me a line anytime.
18+
Got a project in mind, a question, or just want to say hi? I’m all ears—drop me a line
19+
anytime.
2320
</p>
2421

2522
<dl className="mt-8 space-y-4 text-base text-neutral-400">
@@ -30,8 +27,6 @@ export default function Contact() {
3027
<span className="ml-3">Barcelona, Spain</span>
3128
</dd>
3229
</div>
33-
34-
3530
</dl>
3631
</div>
3732

@@ -42,5 +37,5 @@ export default function Contact() {
4237
</div>
4338
</div>
4439
</section>
45-
);
40+
)
4641
}

0 commit comments

Comments
 (0)