Shared dirs almost ready :D

This commit is contained in:
Timothy Pidashev
2024-03-11 14:20:55 -07:00
parent 893c59585e
commit 56f799266b
14 changed files with 19 additions and 5 deletions
+39
View File
@@ -0,0 +1,39 @@
import reflex as rx
from landing.style import *
def navbar():
return rx.box(
rx.center(
rx.flex(
rx.link(
rx.text("About", color=color["white"]),
href="http://about.timmypidashev.localhost"
)
),
rx.flex(
rx.link(
rx.text("Projects", color=color["white"]),
href="http://projects.timmypidashev.localhost"
)
),
rx.flex(
rx.link(
rx.text("Resume", color=color["white"]),
href="http://resume.timmypidashev.localhost"
)
),
rx.flex(
rx.link(
rx.text("Blog", color=color["white"]),
href="http://blog.timmypidashev.localhost"
)
),
rx.flex(
rx.link(
rx.text("Shop", color=color["white"]),
href="http://shop.timmypidashev.localhost"
)
),
spacing="7",
)
)