Skip to content

Commit 539e7bd

Browse files
committed
fix: remove unused variables to resolve linting errors
1 parent fc114b4 commit 539e7bd

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/components/sections/AboutSection.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ interface AboutContent {
3131
};
3232
}
3333

34-
// Typing animation content
35-
const typingContent = {
36-
greeting: "Hey, It's me, David! Just making sure you haven't gotten lost!",
37-
description: "Welcome to my digital living room! Here you'll find the stories that shaped me and the quirks that make me... well, me! Click around to discover what makes me tick beyond just lines of code."
38-
};
39-
4034
// About content - restructured for better engagement
4135
const aboutContent: AboutContent = {
4236
title: "About Me",

src/components/sections/HeroSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useEffect } from 'react'
44
import { motion } from 'framer-motion'
55
import { usePathname } from 'next/navigation'
66
import { getTerminalPath } from '@/lib/utils'
7-
import { TYPING_CONFIGS, TypingLine } from '@/lib/typing-config'
7+
import { TYPING_CONFIGS } from '@/lib/typing-config'
88

99
export default function HeroSection() {
1010
const pathname = usePathname()

0 commit comments

Comments
 (0)