FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Portfolio-2.0/pages/index.tsx at main · VansRouges/Portfolio-2.0 · GitHub
VansRouges
/
Portfolio-2.0
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Portfolio-2.0
/
pages
/
index.tsx
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (41 loc) · 1.32 KB
Breadcrumbs
Portfolio-2.0
/
pages
/
index.tsx
Copy path
File metadata and controls
49 lines (41 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import
Head
from
'next/head'
import
HorizontalScroll
from
'react-scroll-horizontal'
// import Image from 'next/image'
import
About
from
'../components/About'
import
ContactMe
from
'../components/ContactMe'
import
Header
from
'../components/Header'
import
Hero
from
'../components/Hero'
import
Projects
from
'../components/Projects'
import
Skills
from
'../components/Skills'
import
WorkExperience
from
'../components/WorkExperience'
export
default
function
Home
(
)
{
return
(
<
div
className
=
'bg-slate-50 h-screen text-[#004d25] snap-y snap-mandatory
overflow-y-scroll overflow-x-hidden z-0 scrollbar-thin scrollbar-track-[#48bf53]/20
scrollbar-thumb-[#004d25]/80'
>
<
Head
>
<
title
>
Vance Portfolio
</
title
>
</
Head
>
<
Header
/>
{
/* Hero */
}
<
section
id
=
'hero'
className
=
'snap-start'
>
<
Hero
/>
</
section
>
<
section
id
=
'about'
className
=
'snap-center'
>
<
About
/>
</
section
>
<
section
id
=
'experience'
className
=
'snap-center'
>
<
WorkExperience
/>
</
section
>
<
section
id
=
'skills'
className
=
'snap-start'
>
<
Skills
/>
</
section
>
<
section
id
=
'projects'
className
=
'snap-start'
>
<
Projects
/>
</
section
>
<
section
id
=
'contact'
className
=
'snap-start'
>
<
ContactMe
/>
</
section
>
</
div
>
)
}
Back
|
FazBrowse Home
|
New Git URL