-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a061021
commit 59dd17a
Showing
5 changed files
with
81 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import LayoutAlt from '../components/LayoutAlt'; | ||
import AboutUs from '../components/index/AboutUs'; | ||
import Hero from '../components/index/Hero'; | ||
import ProfessorsInfo from '../components/index/Professors'; | ||
import CardCarousel from './CardCarousel'; | ||
import Projects_spotlight from './spotlight'; | ||
import projectsData from '../public/data/projects_common.json'; | ||
|
||
const cardData = projectsData[''].projects; | ||
|
||
|
||
|
||
function Home() { | ||
return ( | ||
<LayoutAlt title={'PIL | Home'} active={'Projects'} search={false}> | ||
<div className="bg-lab-bg text-white"> | ||
{/* HERO SECTION */} | ||
<Hero /> | ||
|
||
{/* ABOUT US SECTION */} | ||
<AboutUs /> | ||
|
||
{/* PROFESSOR INFO */} | ||
<ProfessorsInfo /> | ||
{/* <p | ||
id="spotlight_title" | ||
className=" text-center text-5xl text-[#8bc34a]" | ||
> | ||
SPOTLIGHT | ||
</p> | ||
<Projects_spotlight /> | ||
<CardCarousel cardData={cardData} /> */} | ||
</div> | ||
</LayoutAlt> | ||
); | ||
} | ||
|
||
export default Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": false, | ||
"forceConsistentCasingInFileNames": true, | ||
"noEmit": true, | ||
"incremental": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve" | ||
}, | ||
"include": [ | ||
"next-env.d.ts", | ||
"**/*.ts", | ||
"**/*.tsx" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |