Skip to content

Commit 8bbe0eb

Browse files
committed
Rebranding [WIP]
1 parent 3990e0d commit 8bbe0eb

File tree

17 files changed

+131
-72
lines changed

17 files changed

+131
-72
lines changed

link_bio/assets/avatar.jpg

6.41 KB
Loading

link_bio/assets/css/styles.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
body {
2-
background-color: #0C151D;
2+
background-color: #1A1A1A;
3+
}
4+
5+
a:hover {
6+
color: #3EB0F9 !important;
37
}
48

59
@keyframes blinker {

link_bio/assets/icons/logo.png

-4.33 KB
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Loading

link_bio/assets/logo.svg

Lines changed: 19 additions & 0 deletions
Loading

link_bio/assets/logo_symbol.svg

Lines changed: 16 additions & 0 deletions
Loading

link_bio/link_bio/components/featured_link.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ def featured_link(featured: Featured) -> rx.Component:
99
rx.vstack(
1010
rx.image(
1111
src=featured.image,
12-
border_radius=Size.DEFAULT.value,
13-
background=Color.CONTENT.value,
12+
background=Color.PRIMARY.value,
1413
width="100%",
1514
height="auto",
1615
alt=f"Imagen destacada para: {featured.title}"
1716
),
1817
rx.text(
1918
featured.title,
20-
size=Spacing.VERY_SMALL.value,
21-
style=styles.button_body_style
19+
size=Spacing.VERY_SMALL.value
2220
),
2321
spacing=Spacing.SMALL.value,
2422
align_items="start",

link_bio/link_bio/components/footer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def footer() -> rx.Component:
1010
return rx.vstack(
1111
rx.image(
12-
src="/logo.png",
12+
src="/logo_symbol.svg",
1313
height=Size.VERY_BIG.value,
1414
width=Size.VERY_BIG.value,
1515
alt="Logotipo de MoureDev. Una \"eme\" entre llaves."
@@ -38,10 +38,10 @@ def footer() -> rx.Component:
3838
alt="Logo GitHub"
3939
),
4040
rx.text(
41-
"BUILDING SOFTWARE WITHFROM GALICIA TO THE WORLD.",
41+
"Building software withfrom Galicia to the world.",
4242
font_size=Size.MEDIUM.value,
4343
margin_top=Size.ZERO.value
44-
),
44+
)
4545
),
4646
href=const.REPO_URL,
4747
is_external=True
@@ -74,5 +74,5 @@ def footer() -> rx.Component:
7474
padding_bottom=Size.VERY_BIG.value,
7575
padding_x=Size.BIG.value,
7676
spacing=Spacing.ZERO.value,
77-
color=TextColor.FOOTER.value
77+
color=TextColor.LIGHT.value
7878
)

link_bio/link_bio/components/info_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ def info_text(title: str, body: str) -> rx.Component:
1313
),
1414
f" {body}",
1515
font_size=Size.MEDIUM.value,
16-
color=TextColor.BODY.value
16+
color=TextColor.LIGHT.value
1717
)

link_bio/link_bio/components/link_button.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import reflex as rx
2+
from link_bio.styles.colors import Color
23
import link_bio.styles.styles as styles
34
from link_bio.styles.styles import Size, Spacing
45

@@ -23,13 +24,11 @@ def link_button(title: str,
2324
rx.vstack(
2425
rx.text(
2526
title,
26-
size=Spacing.SMALL.value,
27-
style=styles.button_title_style
27+
size=Spacing.SMALL.value
2828
),
2929
rx.text(
3030
body,
31-
size=Spacing.VERY_SMALL.value,
32-
style=styles.button_body_style
31+
size=Spacing.VERY_SMALL.value
3332
),
3433
align_items="start",
3534
spacing=Spacing.VERY_SMALL.value,
@@ -39,7 +38,9 @@ def link_button(title: str,
3938
align="center",
4039
width="100%"
4140
),
42-
border=f"{'2px' if highlight_color != None else '0px'} solid {highlight_color}",
41+
variant="solid",
42+
radius="none",
43+
background_color=highlight_color if highlight_color != None else Color.PRIMARY.value,
4344
class_name=styles.BOUNCEIN_ANIMATION if animated else None,
4445
on_click=rx.redirect(path=url, is_external=is_external)
4546
)

0 commit comments

Comments
 (0)