Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions app/components/sections/hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,23 +261,23 @@ const HeroSection = () => {
</motion.div>

{/* Call to action buttons with enhanced styling */}
<div className="flex flex-col sm:flex-row gap-6">
<motion.button
className="group relative flex items-center bg-background text-foreground px-8 py-4 border-2 border-foreground shadow-[6px_6px_0px_0px_rgba(250,250,250,0.8)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[12px_12px_0px_0px_rgba(250,250,250,0.8)] overflow-hidden"
onClick={(e) => handleHashLinkClick(e, 'projects')}
<div className="flex flex-col sm:flex-row gap-6 justify-start">
<motion.a
href="/blog"
className="group relative flex items-center bg-background text-foreground px-6 py-3 text-sm sm:text-base border-2 border-foreground shadow-[6px_6px_0px_0px_rgba(250,250,250,0.8)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[12px_12px_0px_0px_rgba(250,250,250,0.8)] overflow-hidden w-fit"
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
>
<div className="absolute inset-0 bg-gradient-to-r from-accent/0 via-accent/20 to-accent/0 translate-x-[-100%] group-hover:translate-x-[100%] transition-transform duration-1000" />
<span className="relative">View My Work</span>
<span className="relative">Read My Blog</span>
<ChevronRight
size={20}
className="ml-2 group-hover:translate-x-1 transition-transform relative"
/>
</motion.button>
</motion.a>

<motion.button
className="group relative flex items-center bg-background text-foreground px-8 py-4 border-2 border-foreground shadow-[6px_6px_0px_0px_rgba(250,250,250,0.8)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[12px_12px_0px_0px_rgba(250,250,250,0.8)] overflow-hidden"
className="group relative flex items-center bg-background text-foreground px-6 py-3 text-sm sm:text-base border-2 border-foreground shadow-[6px_6px_0px_0px_rgba(250,250,250,0.8)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[12px_12px_0px_0px_rgba(250,250,250,0.8)] overflow-hidden w-fit"
onClick={(e) => handleHashLinkClick(e, 'contact')}
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
Expand Down Expand Up @@ -496,7 +496,7 @@ const HeroSection = () => {
transition={{ delay: 3, duration: 0.5 }}
>
<button
className="bg-background p-4 flex items-center justify-center border-2 border-foreground shadow-[4px_4px_0px_0px_rgba(250,250,250,1)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[8px_8px_0px_0px_rgba(250,250,250,1)] animate-bounce-slow text-foreground cursor-pointer"
className="bg-background p-3 sm:p-4 text-sm sm:text-base flex items-center justify-center border-2 border-foreground shadow-[4px_4px_0px_0px_rgba(250,250,250,1)] font-mono font-bold transition-all hover:translate-x-[-2px] hover:translate-y-[-2px] hover:shadow-[8px_8px_0px_0px_rgba(250,250,250,1)] animate-bounce-slow text-foreground cursor-pointer"
aria-label="Scroll down"
onClick={(e) => handleHashLinkClick(e, 'about')}
type="button"
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
Expand Down
Loading
Loading