-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import reflex as rx | ||
import link_bio.constants as const | ||
from link_bio.components.link_button import link_button | ||
from link_bio.styles.colors import Color | ||
from link_bio.styles.styles import Spacing | ||
|
||
|
||
def newsletter() -> rx.Component: | ||
return rx.vstack( | ||
link_button( | ||
"mouredev.log", | ||
"La newsletter de la comunidad para mantenerse al día", | ||
"/icons/news.svg", | ||
const.NEWSLETTER_URL | ||
), | ||
rx.chakra.box( | ||
element="iframe", | ||
src="https://embeds.beehiiv.com/c9c3f7b7-7ed9-428a-a58f-cb53577fa352?slim=true", | ||
height="74px", | ||
width="100%" | ||
), | ||
spacing=Spacing.DEFAULT.value, | ||
width="100%" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pip==24.0 | ||
reflex==0.4.4 | ||
reflex==0.4.5 | ||
python-dotenv==1.0.1 | ||
supabase==2.3.5 | ||
configcat-client==9.0.2 | ||
|