|
1 | 1 | import { motion } from 'motion/react'; |
| 2 | +import { Link } from 'react-router-dom'; |
| 3 | +import { Hand, BookOpen, FolderKanban, Camera } from 'lucide-react'; |
2 | 4 | import { getImageUrl } from '../../utils/imageUtils'; |
3 | | -import { Navigation } from '../Navigation'; |
| 5 | +import contentData from '../../data/content'; |
4 | 6 |
|
5 | 7 | export function Home() { |
6 | 8 | return ( |
@@ -31,10 +33,49 @@ export function Home() { |
31 | 33 | <h1 className="text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-normal tracking-tight mb-4 sm:mb-6 text-gray-900"> |
32 | 34 | Hello, welcome here, |
33 | 35 | </h1> |
34 | | - <p className="text-xl sm:text-2xl md:text-3xl lg:text-4xl font-normal text-gray-700 mb-8 sm:mb-12 md:mb-16"> |
| 36 | + <p className="text-xl sm:text-2xl md:text-3xl lg:text-4xl font-normal text-gray-700 mb-6 sm:mb-8 md:mb-10"> |
35 | 37 | Namaste (Greetings!) |
36 | 38 | </p> |
37 | | - <Navigation inline /> |
| 39 | + <div className="text-base sm:text-lg md:text-xl text-gray-700 mb-6 sm:mb-8 md:mb-10 max-w-2xl mx-auto leading-loose"> |
| 40 | + <p className="mb-4 text-left sm:text-center leading-relaxed"> |
| 41 | + Feel free to explore!{' '} |
| 42 | + <Link |
| 43 | + to="/about" |
| 44 | + className="inline-flex items-center gap-1.5 px-3 sm:px-4 py-2 sm:py-2.5 rounded-lg bg-gray-200 hover:bg-gray-300 border-2 border-gray-300 hover:border-gray-400 transition-all font-semibold text-gray-900 shadow-sm hover:shadow-md my-1 sm:my-0" |
| 45 | + > |
| 46 | + <Hand className="w-4 h-4 sm:w-5 sm:h-5" /> |
| 47 | + Get to know me |
| 48 | + </Link> |
| 49 | + {' '}better,{' '} |
| 50 | + <Link |
| 51 | + to="/storiesofadventure" |
| 52 | + className="inline-flex items-center gap-1.5 px-3 sm:px-4 py-2 sm:py-2.5 rounded-lg bg-gray-200 hover:bg-gray-300 border-2 border-gray-300 hover:border-gray-400 transition-all font-semibold text-gray-900 shadow-sm hover:shadow-md my-1 sm:my-0" |
| 53 | + > |
| 54 | + <BookOpen className="w-4 h-4 sm:w-5 sm:h-5" /> |
| 55 | + dive into my stories |
| 56 | + </Link> |
| 57 | + ,{' '} |
| 58 | + <Link |
| 59 | + to="/projects" |
| 60 | + className="inline-flex items-center gap-1.5 px-3 sm:px-4 py-2 sm:py-2.5 rounded-lg bg-gray-200 hover:bg-gray-300 border-2 border-gray-300 hover:border-gray-400 transition-all font-semibold text-gray-900 shadow-sm hover:shadow-md my-1 sm:my-0" |
| 61 | + > |
| 62 | + <FolderKanban className="w-4 h-4 sm:w-5 sm:h-5" /> |
| 63 | + check out my projects |
| 64 | + </Link> |
| 65 | + , and{' '} |
| 66 | + <Link |
| 67 | + to="/photography" |
| 68 | + className="inline-flex items-center gap-1.5 px-3 sm:px-4 py-2 sm:py-2.5 rounded-lg bg-gray-200 hover:bg-gray-300 border-2 border-gray-300 hover:border-gray-400 transition-all font-semibold text-gray-900 shadow-sm hover:shadow-md my-1 sm:my-0" |
| 69 | + > |
| 70 | + <Camera className="w-4 h-4 sm:w-5 sm:h-5" /> |
| 71 | + browse my photo stories |
| 72 | + </Link> |
| 73 | + . |
| 74 | + </p> |
| 75 | + <p className="text-gray-600 text-left sm:text-center"> |
| 76 | + Seriously, go ahead and click around - I promise it's worth it! 😄 |
| 77 | + </p> |
| 78 | + </div> |
38 | 79 | </motion.div> |
39 | 80 | </div> |
40 | 81 | </div> |
|
0 commit comments