File tree Expand file tree Collapse file tree 5 files changed +8
-19
lines changed Expand file tree Collapse file tree 5 files changed +8
-19
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { useState , useEffect } from 'react'
2
- import { ExperienceTileProps , ExperienceTile } from './experienceTile'
3
- // import { ProjectTile } from './components/projectTile'
2
+ import { ExperienceTileProps , ExperienceTile } from './Tiles/ExperienceTile'
4
3
5
4
interface ExperiencesProps {
6
5
arr : ExperienceTileProps [ ] ;
Original file line number Diff line number Diff line change 1
1
import { useState , useEffect } from 'react'
2
- import { ProjectTile , ProjectTileProps } from './projectTile '
2
+ import { ProjectTile , ProjectTileProps } from './Tiles/ProjectTile '
3
3
4
4
interface ProjectProps {
5
5
arr : ProjectTileProps [ ] ;
Original file line number Diff line number Diff line change 1
1
"use client" ;
2
2
3
- import { Header } from './components/header '
4
- import { Footer } from './components/footer '
5
- import { About } from './components/about '
6
- import { Experiences } from './components/experiences '
7
- import { Projects } from './components/projects '
8
- import Navbar from './components/navbar ' ;
3
+ import { Header } from './components/Header '
4
+ import { Footer } from './components/Footer '
5
+ import { About } from './components/About '
6
+ import { Experiences } from './components/Experiences '
7
+ import { Projects } from './components/Projects '
8
+ import Navbar from './components/Navbar ' ;
9
9
10
10
export default function Portfolio ( ) {
11
- // const [darkMode, setDarkMode] = useState(false)
12
- // useEffect(() => {
13
- // if (darkMode) {
14
- // document.documentElement.classList.add('dark')
15
- // } else {
16
- // document.documentElement.classList.remove('dark')
17
- // }
18
- // }, [darkMode])
19
-
20
11
const experiencesArray = [
21
12
{
22
13
companyLogo : "/images/cactuscreatives.png" ,
@@ -79,7 +70,6 @@ export default function Portfolio() {
79
70
80
71
81
72
return (
82
- // ${darkMode ? 'dark' : ''}
83
73
< div className = { `min-h-screen` } >
84
74
< div className = "bg-neutral-100 dark:bg-neutral-950 text-gray-800 dark:text-gray-200 transition-colors duration-300" >
85
75
< Navbar />
You can’t perform that action at this time.
0 commit comments