From 406c9d1fd6714665f3dea2fb70a6d639b167b3fd Mon Sep 17 00:00:00 2001 From: setsun Date: Thu, 29 Jun 2023 15:06:08 -0400 Subject: [PATCH] clean up sketch --- README.md | 4 +- common/constants.tsx | 4 + components/Layout.tsx | 12 ++- components/Navigation.tsx | 2 +- components/hero-scenes/WireframePlanet.tsx | 40 +++++--- package.json | 4 +- pages/index.tsx | 9 +- pnpm-lock.yaml | 108 ++++++++++----------- 8 files changed, 103 insertions(+), 80 deletions(-) diff --git a/README.md b/README.md index d7c8776b..a07e39c8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # setsun.xyz -〰 consciousness stream 〰 \ No newline at end of file +〰 consciousness stream 〰 + +##### just a playground for new technologies, and personal explorations / musing. \ No newline at end of file diff --git a/common/constants.tsx b/common/constants.tsx index f6fc6ab8..02776fb8 100644 --- a/common/constants.tsx +++ b/common/constants.tsx @@ -28,6 +28,10 @@ export const SOCIAL_LINKS = [ export const NAVIGATION_ITEMS = [ + { + name: 'About', + link: '/' + }, { name: 'Writing', link: '/writing' diff --git a/components/Layout.tsx b/components/Layout.tsx index c5861ae2..581942ca 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -14,13 +14,15 @@ const Layout: React.FC = (props) => ( -
- +
+ -
- {props.children} +
+
+ {props.children} -
+
+
diff --git a/components/Navigation.tsx b/components/Navigation.tsx index c4d6f02e..fd3d7d75 100644 --- a/components/Navigation.tsx +++ b/components/Navigation.tsx @@ -7,7 +7,7 @@ interface Props { } const SideNavigation: React.FC = ({ className }) => ( -