Skip to content

Commit

Permalink
Add hello world placeholder to about, people, and publications pages
Browse files Browse the repository at this point in the history
  • Loading branch information
pbong committed Oct 31, 2023
1 parent 1ff3f40 commit a5116aa
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
8 changes: 7 additions & 1 deletion src/pages/about.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import dash
from dash import html
import dash_bootstrap_components as dbc


dash.register_page(__name__, path='/about', name='About')

layout = html.Div()
layout = dbc.Container([
html.Br(),
html.Br(),
html.Br(),
html.Div("Hello World")
])
9 changes: 7 additions & 2 deletions src/pages/people.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import dash
from dash import html

import dash_bootstrap_components as dbc

dash.register_page(__name__, path='/people', name='People')

layout = html.Div()
layout = dbc.Container([
html.Br(),
html.Br(),
html.Br(),
html.Div("Hello World")
])
9 changes: 7 additions & 2 deletions src/pages/publications.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import dash
from dash import html

import dash_bootstrap_components as dbc

dash.register_page(__name__, path='/publications', name='Publications')

layout = html.Div()
layout = dbc.Container([
html.Br(),
html.Br(),
html.Br(),
html.Div("Hello World")
])

0 comments on commit a5116aa

Please sign in to comment.