-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Split into different pages No longer a vertical page. Split into - "/" which contains home and apply - "/about" which contains about pages - "/gallery" which contains photos page - "archive" which contains past projects Plus there are some minor CSS changes to accommodate * Navbar fixes and headers for pages - combined home and apply pages - fixed dates and links for home page - added appropriate headers and styles * Text updates and fixed navbar rainbow
- Loading branch information
1 parent
66187d6
commit a4ba9a6
Showing
11 changed files
with
73 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"use client" | ||
import type { NextPage } from 'next'; | ||
import '@/src/styles/reset.scss'; | ||
|
||
import About from '@/src/sections/About-Projects'; | ||
import NavigationBar from '@/src/components/navbar'; | ||
// here we will compile all the sections of the website together | ||
|
||
const AboutPage: NextPage = () => { | ||
return ( | ||
<main> | ||
<NavigationBar /> | ||
<About /> | ||
</main> | ||
); | ||
}; | ||
|
||
export default AboutPage; |
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,18 @@ | ||
"use client" | ||
import type { NextPage } from 'next'; | ||
import '@/src/styles/reset.scss'; | ||
|
||
import NavigationBar from '@/src/components/navbar'; | ||
import Archive from '@/src/sections/Archive'; | ||
// here we will compile all the sections of the website together | ||
|
||
const ArchivePage: NextPage = () => { | ||
return ( | ||
<main> | ||
<NavigationBar /> | ||
<Archive /> | ||
</main> | ||
); | ||
}; | ||
|
||
export default ArchivePage; |
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,18 @@ | ||
"use client" | ||
import type { NextPage } from 'next'; | ||
import '@/src/styles/reset.scss'; | ||
|
||
import PhotoGallery from '@/src/sections/Photo-Gallery'; | ||
import NavigationBar from '@/src/components/navbar'; | ||
// here we will compile all the sections of the website together | ||
|
||
const GalleryPage: NextPage = () => { | ||
return ( | ||
<main> | ||
<NavigationBar /> | ||
<PhotoGallery /> | ||
</main> | ||
); | ||
}; | ||
|
||
export default GalleryPage; |
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
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ | |
flex-direction: column; | ||
align-items: center; | ||
margin-top: 2rem; | ||
padding-top: 3rem; | ||
} |
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
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