-
Notifications
You must be signed in to change notification settings - Fork 0
/
Intro.py
26 lines (21 loc) · 891 Bytes
/
Intro.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import pandas as pd
import streamlit as st
####################################################
# PARAMS #
####################################################
st.set_page_config(page_title="Intro", page_icon="👋",)
####################################################
# APP #
####################################################
st.write("# Welcome to Creative Fiancing Calculator App! 👋")
st.sidebar.success("Select a calculator.")
st.markdown(
"""
The leads app is built specifically for
calculating creative financing strategies.
**👈 Select a creative financing type from the sidebar** to calculate
the offer terms for a deal!
### Want to learn more?
- Check out [OfferREI](https://www.offerrei.com/index.html?fpr=techinrealestate) to auto create offers
"""
)