reorganize, package upgrades
This commit is contained in:
parent
cfc83010a0
commit
c13e6285a8
@ -1,6 +1,6 @@
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||
import { faUser } from '@fortawesome/free-solid-svg-icons'
|
||||
import GitHubFeatured from '../GitHubFeatured'
|
||||
import GitHubFeatured from '../widgets/GitHubFeatured'
|
||||
import Image from 'next/image'
|
||||
|
||||
export default function About() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import BackButton from '../../../BackButton';
|
||||
import BackButton from '../../../objects/BackButton';
|
||||
|
||||
const WhatWasGoingOnLateSummer2024: React.FC = () => {
|
||||
return (
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import BackButton from '../../../BackButton';
|
||||
import BackButton from '../../../objects/BackButton';
|
||||
|
||||
const WhatWasGoingOnLateSummer2024: React.FC = () => {
|
||||
return (
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||
import { faGithub } from '@fortawesome/free-brands-svg-icons'
|
||||
import { faStar, faCodeBranch } from '@fortawesome/free-solid-svg-icons'
|
||||
import featuredProjects from '../data/featured.json'
|
||||
import featuredProjects from '../../data/featured.json'
|
||||
|
||||
export default function GitHubFeatured() {
|
||||
return (
|
@ -3,7 +3,7 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
import Image from 'next/image';
|
||||
import { Play, SkipBack, SkipForward, ChevronLeft, ChevronRight } from 'lucide-react';
|
||||
import LoadingSpinner from './LoadingSpinner';
|
||||
import LoadingSpinner from '../objects/LoadingSpinner';
|
||||
|
||||
interface Song {
|
||||
albumArt: string;
|
@ -1,6 +1,6 @@
|
||||
import Header from '../components/Header'
|
||||
import MusicWidget from '../components/Music'
|
||||
import MusicInfo from '../components/MusicInfo'
|
||||
import MusicWidget from '../components/widgets/Music'
|
||||
import MusicInfo from '../components/objects/MusicInfo'
|
||||
import Footer from '../components/Footer'
|
||||
|
||||
export default function Music() {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import Header from './components/Header';
|
||||
import HomePg from './components/pages/Home';
|
||||
import Footer from './components/Footer';
|
||||
import NowPlaying from './components/NowPlaying';
|
||||
import NowPlaying from './components/widgets/NowPlaying';
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
|
16
package.json
16
package.json
@ -22,15 +22,15 @@
|
||||
"react-dom": "^19.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19.0.2",
|
||||
"@types/react-dom": "^19",
|
||||
"postcss": "^8",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"eslint": "^9",
|
||||
"typescript": "^5.7.2",
|
||||
"@types/node": "^20.17.12",
|
||||
"@types/react": "^19.0.3",
|
||||
"@types/react-dom": "^19.0.2",
|
||||
"postcss": "^8.4.49",
|
||||
"tailwindcss": "^3.4.17",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-config-next": "15.1.3",
|
||||
"@eslint/eslintrc": "^3"
|
||||
"@eslint/eslintrc": "^3.2.0"
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"@vercel/speed-insights"
|
||||
|
Reference in New Issue
Block a user