Skip to content

Commit

Permalink
feat: nextjs docs
Browse files Browse the repository at this point in the history
  • Loading branch information
edotau committed Feb 3, 2024
1 parent 28c05fe commit f03f59b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 39 deletions.
30 changes: 0 additions & 30 deletions pages/index.js → components/essentialLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ export default function Home() {
<StyleReset />
<Div
textColor="black900"
w="90%"
h="90%"
maxW="1200px"
minW="600px"
m={{ x: "auto", y: "2rem" }}
p={{ x: "2rem", y: "2rem" }}
d="flex"
Expand Down Expand Up @@ -71,31 +67,6 @@ export default function Home() {
While the best chapters of my life are being written, I'm living my best life because life's too precious to spend even a single second unhappy. I hope being who I am will start redefining the boundaries of happiness, success and hard work.
</Text>
}
<Div justify="space-around" p={{ x: "1rem", y: "1rem" }} align="left">
<Anchor
href="/experience"
target="_self"
>
<Button
prefix={
<Icon
name="UserSolid"
size="16px"
color="white"
m={{ r: "0.5rem" }}
/>
}
bg="info900"
hoverBg="success500"
rounded="circle"
p={{ r: "1.5rem", l: "1rem" }}
shadow="3"
hoverShadow="4"
>
EXPERIENCE
</Button>
</Anchor>
</Div>
<Div d="flex" justify="space-around" align="center" p={{ x: "1rem", y: "2rem"}}>
<Row>
<Col size={{ xs: "auto" }}>
Expand Down Expand Up @@ -129,7 +100,6 @@ export default function Home() {
</Row>
</Div>
</Div>

</ThemeProvider>
);
}
15 changes: 6 additions & 9 deletions pages/_metadata.json → pages/_meta.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
{
"home": {
"index": {
"title": "Home",
"href": "/",
"theme": {
"darkMode": false,
"breadcrumb": false
"breadcrumb": false,
"toc": false
}
},
"experience": {
"title": "Experience",
"type": "page",
"theme": {
"breadcrumb": false,
"darkMode": false,
"toc": false
}
},
"projects": {
"title": "Projects",
"type": "page",
"theme": {
"darkMode": false,
"breadcrumb": false
"breadcrumb": false,
"toc": false
}
}
}
3 changes: 3 additions & 0 deletions pages/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Home from '../components/essentialLinks'

<Home />

0 comments on commit f03f59b

Please sign in to comment.