mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-08 13:45:01 +02:00
🐛 fix(dir): replace alias
This commit is contained in:
1575
package-lock.json
generated
1575
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
import { motion } from 'framer-motion';
|
import { motion } from 'framer-motion';
|
||||||
import { MapPin, Users, Book } from 'lucide-react';
|
import { MapPin, Users, Book } from 'lucide-react';
|
||||||
import type { GithubUser } from '@/lib/github';
|
import type { GithubUser } from '../../lib/github';
|
||||||
|
|
||||||
interface TeamMemberCardProps {
|
interface TeamMemberCardProps {
|
||||||
user: GithubUser;
|
user: GithubUser;
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import { Github, Twitter, Youtube, Book, MessageSquare, Newspaper, HelpCircle } from 'lucide-react';
|
// import { Github, Twitter, Youtube, Book, MessageSquare, Newspaper, HelpCircle } from 'lucide-react';
|
||||||
import { ContactSection } from './ContactSection';
|
import { ContactSection } from './ContactSection';
|
||||||
import { footerNavigation } from '@/data/footerNavigation';
|
import { footerNavigation } from '../../../data/footerNavigation';
|
||||||
|
|
||||||
export function Footer() {
|
export function Footer() {
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { motion } from 'framer-motion';
|
import { motion } from 'framer-motion';
|
||||||
import { Timeline } from '@/components/about/Timeline';
|
import { Timeline } from '../components/about/Timeline';
|
||||||
import { TeamSection } from '@/components/about/TeamSection';
|
import { TeamSection } from '../components/about/TeamSection';
|
||||||
import { MissionSection } from '@/components/about/MissionSection';
|
import { MissionSection } from '../components/about/MissionSection';
|
||||||
|
|
||||||
export default function About() {
|
export default function About() {
|
||||||
return (
|
return (
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
import { useState, useMemo } from 'react';
|
import { useState, useMemo } from 'react';
|
||||||
import { motion } from 'framer-motion';
|
import { motion } from 'framer-motion';
|
||||||
import { Camera } from 'lucide-react';
|
import { Camera } from 'lucide-react';
|
||||||
import { GalleryImage } from '@/components/gallery/GalleryImage';
|
import { GalleryImage } from '../components/gallery/GalleryImage';
|
||||||
import { CategoryFilter } from '@/components/gallery/CategoryFilter';
|
import { CategoryFilter } from '../components/gallery/CategoryFilter';
|
||||||
import { galleryImages, categories } from '@/data/gallery';
|
import { galleryImages, categories } from '../data/gallery';
|
||||||
|
|
||||||
export default function Gallery() {
|
export default function Gallery() {
|
||||||
const [selectedCategory, setSelectedCategory] = useState('All');
|
const [selectedCategory, setSelectedCategory] = useState('All');
|
||||||
|
Reference in New Issue
Block a user