mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
Update intro component
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,5 +1,8 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# astro
|
||||||
|
.astro/
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
/.pnp
|
/.pnp
|
||||||
@@ -16,6 +19,7 @@ node_modules/
|
|||||||
|
|
||||||
# production
|
# production
|
||||||
/build
|
/build
|
||||||
|
/dist
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"_variables": {
|
|
||||||
"lastUpdateCheck": 1730844981172
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1
src/.astro/types.d.ts
vendored
1
src/.astro/types.d.ts
vendored
@@ -1 +0,0 @@
|
|||||||
/// <reference types="astro/client" />
|
|
||||||
@@ -11,7 +11,7 @@ export default function Intro() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-full max-w-4xl px-4">
|
<div className="w-full max-w-4xl px-4">
|
||||||
<div className="space-y-32 md:space-y-48">
|
<div className="space-y-8 md:space-y-12">
|
||||||
<div className="flex flex-col sm:flex-row items-center sm:items-center justify-center gap-8 sm:gap-16">
|
<div className="flex flex-col sm:flex-row items-center sm:items-center justify-center gap-8 sm:gap-16">
|
||||||
<div className="w-32 h-32 sm:w-48 sm:h-48 shrink-0">
|
<div className="w-32 h-32 sm:w-48 sm:h-48 shrink-0">
|
||||||
<img
|
<img
|
||||||
@@ -37,8 +37,7 @@ export default function Intro() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<div className="space-y-8">
|
||||||
<div className="space-y-32 md:space-y-48">
|
|
||||||
<p className="text-foreground/80 text-center text-base sm:text-2xl italic max-w-3xl mx-auto font-medium">
|
<p className="text-foreground/80 text-center text-base sm:text-2xl italic max-w-3xl mx-auto font-medium">
|
||||||
Coffee-to-code conversion isn't just a clever phrase –
|
Coffee-to-code conversion isn't just a clever phrase –
|
||||||
<span className="text-aqua-bright"> it's how I approach each project:</span>
|
<span className="text-aqua-bright"> it's how I approach each project:</span>
|
||||||
@@ -46,7 +45,6 @@ export default function Intro() {
|
|||||||
<span className="text-blue-bright"> with attention to detail,</span>
|
<span className="text-blue-bright"> with attention to detail,</span>
|
||||||
<span className="text-green-bright"> and a refined process.</span>
|
<span className="text-green-bright"> and a refined process.</span>
|
||||||
</p>
|
</p>
|
||||||
<br/>
|
|
||||||
<div className="flex justify-center">
|
<div className="flex justify-center">
|
||||||
<button
|
<button
|
||||||
onClick={scrollToNext}
|
onClick={scrollToNext}
|
||||||
|
|||||||
Reference in New Issue
Block a user