+
diff --git a/src/components/blur-background.astro b/src/components/main/blur-background.astro
similarity index 100%
rename from src/components/blur-background.astro
rename to src/components/main/blur-background.astro
diff --git a/src/components/main/board.astro b/src/components/main/board.astro
new file mode 100644
index 0000000..e69de29
diff --git a/src/components/box.astro b/src/components/main/box.astro
similarity index 100%
rename from src/components/box.astro
rename to src/components/main/box.astro
diff --git a/src/components/buttons.astro b/src/components/main/buttons.astro
similarity index 76%
rename from src/components/buttons.astro
rename to src/components/main/buttons.astro
index 2be6707..c9465bb 100644
--- a/src/components/buttons.astro
+++ b/src/components/main/buttons.astro
@@ -1,4 +1,10 @@
---
+interface Props {
+ href: string
+}
+
+const { href }: Props = Astro.props
+
const BUTTONS_STYLES = [
'col-span-2',
'row-span-1',
@@ -12,7 +18,6 @@ const BUTTONS_STYLES = [
'border-2',
'border-emerald-950',
'dark:border-emerald-300',
- // 'bg-[#1b383c]',
'text-slate-950',
'font-rubik-doodle',
'w-full',
@@ -21,49 +26,70 @@ const BUTTONS_STYLES = [
'duration-200',
'dark:bg-slate-900',
'dark:text-slate-100',
- 'bg-slate-300',
- '[&>*]:font-fira'
- // '[&>*]:hover:text-slate-300',
+ 'bg-slate-300'
].join(' ')
const BUTTON_STYLES = [
'dark:hover:text-emerald-300',
- 'hover:text-emerald-900'
+ 'hover:text-emerald-900',
+ 'cursor-pointer'
// 'hover:scale-110',
].join(' ')
+
+import {
+ siMicrosofttranslator,
+ siKashflow,
+ siGithub,
+ siGooglecardboard
+} from 'simple-icons'
+
+import Home from '@components/icons/home.astro'
+import Moon from '@components/icons/moon.astro'
+import Sun from '@components/icons/sun.astro'
+
+const BOARD_BUTTON_STYLE =
+ process.env.NODE_ENV === 'development' ? '' : 'hidden'
---
-
+
+
-
diff --git a/src/components/card.astro b/src/components/main/card.astro
similarity index 100%
rename from src/components/card.astro
rename to src/components/main/card.astro
diff --git a/src/components/container.astro b/src/components/main/container.astro
similarity index 100%
rename from src/components/container.astro
rename to src/components/main/container.astro
diff --git a/src/components/featured.astro b/src/components/main/featured.astro
similarity index 95%
rename from src/components/featured.astro
rename to src/components/main/featured.astro
index ced7dbe..9b8b134 100644
--- a/src/components/featured.astro
+++ b/src/components/main/featured.astro
@@ -41,7 +41,6 @@ const FEATURED_STYLES = [
>
Featured
-
&
diff --git a/src/components/main/footer.astro b/src/components/main/footer.astro
new file mode 100644
index 0000000..d93914c
--- /dev/null
+++ b/src/components/main/footer.astro
@@ -0,0 +1,26 @@
+
+
+
diff --git a/src/components/main-bento.astro b/src/components/main/main-bento.astro
similarity index 91%
rename from src/components/main-bento.astro
rename to src/components/main/main-bento.astro
index e42a959..78040fe 100644
--- a/src/components/main-bento.astro
+++ b/src/components/main/main-bento.astro
@@ -1,7 +1,7 @@
---
import AboutMe from './about-me-card.astro'
import TechTitle from './title.astro'
-import Experience from './experience.astro'
+import Experience from './working-on.astro'
import Buttons from './buttons.astro'
import TechStack from './tech-stack.astro'
import Featured from './featured.astro'
diff --git a/src/components/responsive-container.astro b/src/components/main/responsive-container.astro
similarity index 80%
rename from src/components/responsive-container.astro
rename to src/components/main/responsive-container.astro
index 751a6f8..0254376 100644
--- a/src/components/responsive-container.astro
+++ b/src/components/main/responsive-container.astro
@@ -1,5 +1,5 @@
---
-import ResponsivePeep from './css-peeps/peep.astro'
+import ResponsivePeep from '@components/css-peeps/peep.astro'
import Container from './container.astro'
import BlurBackground from './blur-background.astro'
---
@@ -9,8 +9,7 @@ import BlurBackground from './blur-background.astro'
-
You caught me
-
+
You caught me!
-
+
The responsive design for this page is still in progress.
I invite you to visit it from a computer or a tablet to get the best experience.
diff --git a/src/components/main/simple-icon.astro b/src/components/main/simple-icon.astro
new file mode 100644
index 0000000..996899f
--- /dev/null
+++ b/src/components/main/simple-icon.astro
@@ -0,0 +1,11 @@
+---
+interface Props {
+ icon: {
+ svg: string
+ hex: string
+ }
+}
+const { icon }: Props = Astro.props
+---
+
+
diff --git a/src/components/socials.astro b/src/components/main/socials.astro
similarity index 55%
rename from src/components/socials.astro
rename to src/components/main/socials.astro
index 7afe928..6e90e8f 100644
--- a/src/components/socials.astro
+++ b/src/components/main/socials.astro
@@ -31,78 +31,94 @@ const SOCIALS_STYLES: string = [
'grid-rows-2',
'grid-cols-1'
].join(' ')
+import {
+ siMaildotru,
+ siGithub,
+ siGmail,
+ siLichess,
+ siLinkedin,
+ siAdobeacrobatreader
+} from 'simple-icons'
---
-
diff --git a/src/pages/blog.astro b/src/pages/blog.astro
new file mode 100644
index 0000000..e719242
--- /dev/null
+++ b/src/pages/blog.astro
@@ -0,0 +1,12 @@
+---
+import Layout from 'src/layouts/layout.astro'
+import BlogBento from '@components/blog/blog-bento.astro'
+---
+
+
+
+
+
+
diff --git a/src/pages/board.astro b/src/pages/board.astro
new file mode 100644
index 0000000..fe66874
--- /dev/null
+++ b/src/pages/board.astro
@@ -0,0 +1,96 @@
+---
+import '@fontsource/handlee'
+import '@fontsource/redressed'
+import Layout from 'src/layouts/layout.astro'
+import Footer from '@components/main/footer.astro'
+---
+
+
+
+
+
+
h1
+
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit
+ dolor temporibus, aperiam, enim omnis quibusdam mollitia et magnam aut,
+ natus possimus veritatis repellendus id repellat iusto sed optio nam
+ placeat.
+
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit
+ dolor temporibus, aperiam, enim omnis quibusdam mollitia et magnam aut,
+ natus possimus veritatis repellendus id repellat iusto sed optio nam
+ placeat.
+
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit
+ dolor temporibus, aperiam, enim omnis quibusdam mollitia et magnam aut,
+ natus possimus veritatis repellendus id repellat iusto sed optio nam
+ placeat.
+