pokedash / pages /home.py
AnanthZeke's picture
intialized dash app
113b6b6
raw
history blame
No virus
468 Bytes
from dash import html
from pages.utils import navbar
def layout():
return html.Div([
# Navbar
navbar(),
# Home Page Content
html.Div([
html.H1("Welcome to the Pokémon Dashboard"),
html.P("Explore detailed Pokémon data, compare stats, and build your ultimate team."),
html.Img(src="assets/pokemon_logo.jpeg", alt="Pokémon Logo", className="logo"),
], className='home-content')
])