diff --git a/.flaskenv b/.flaskenv
deleted file mode 100644
index f84f4514fd3817c5e174aef38510848226be4e50..0000000000000000000000000000000000000000
--- a/.flaskenv
+++ /dev/null
@@ -1,2 +0,0 @@
-FLASK_APP=main.py
-FLASK_ENV=development
diff --git a/OurSpaces.html b/OurSpaces.html
deleted file mode 100644
index e70fe502fccb76d592b5164159cd77676cc15ac2..0000000000000000000000000000000000000000
--- a/OurSpaces.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<head>
-	<link rel="stylesheet" href="framework.css">
-</head>
-
-<body class="body">
-
-<header> <img src="header.png"/> </header>
-
-
-
-
-
-<div class="box">
-
-</div>
-</body>
diff --git a/README.md b/README.md
deleted file mode 100644
index 56edf6214766642903612617300f9fe91434aae5..0000000000000000000000000000000000000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# README
-
-Write an overview of your project here...
diff --git a/locations b/locations
deleted file mode 100644
index a0b601ea56544f591026e7a33fa2be3df80b54c0..0000000000000000000000000000000000000000
--- a/locations
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <title> Locations </title>
-
-<style>
-    body{
-  background-color: white;
-  color: black;
-}
-
-header{
-  background-color: white;
-  color: black;
-  display: block;
-  margin-left: auto;
-  margin-right: auto;
-  float: center;
-}
-</style>
-<body>
-  <h1> OUR LOCATIONS </h>
-    <ul>
-  <li><img src="https://images.squarespace-cdn.com/content/v1/55439320e4b0f92b5d6c4c8b/1646867535415-4JI39H286BUMT26H4FHN/C36A1915.jpg?format=2500w" wedth="200" height="200" ><p> Codebase </p></li>
-  <li><img src="https://wearecatalyst.org/wp-content/uploads/2022/05/Catalyst03.jpg" wedth="200" height="200" ><p> Catalyst </p></li>
-  <li><img src="https://images.squarespace-cdn.com/content/v1/5709040420c647579532dbb4/1594914119071-OWI9G22S295OCMSWL0VL/_K5L1162.jpg?format=2500w" wedth="200" height="200" ><p> C4DI </p></li>
-  <li><img src="https://dogpatchlabs.wpenginepowered.com/wp-content/uploads/2022/09/ian_browne.jpg "wedth="200" height="200" ><p> Dogpatch </p></li>
-    <li><img src="https://stationf.co/img/misc/create-zone.jpg" wedth="200" height="200" ><p> Stafion F </p></li>
-  </ul>
-
-</body>
diff --git a/main.py b/main.py
deleted file mode 100644
index 3a9489be6cea14e58c3fa335a5280c7075eec7c5..0000000000000000000000000000000000000000
--- a/main.py
+++ /dev/null
@@ -1,40 +0,0 @@
-from flask import Flask, request, render_template, redirect
-import database
-import csv
-import re
-
-
-def import_workspace(data):
-	workspace = database.Workspace(
-		data["name"],
-		data["address"],
-		data["main_photo"],
-		data["additional_photos"],
-		data["description"],
-		data["website"],
-		data["email"],
-		data["phone_number"],
-		data["opening_hours"],
-		data["checkin_instructions"]
-	)
-
-app = Flask(__name__)
-
-
-
-
-file = open("coworking_spaces.csv")
-csvreader = csv.reader(file)
-header = next(csvreader)
-
-Rows= []
-for Row in csvreader:
-    Rows.append(Row)
-print(Row)
-
-with open('coworking_spaces.csv') as file:
-    content = file.readlines()
-header = content[2:]
-rows = content[1:]
-print(header)
-print(Rows)
diff --git a/static/.gitkeep b/static/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/landingpage.html b/static/landingpage.html
similarity index 64%
rename from landingpage.html
rename to static/landingpage.html
index 5ee32a82b1663e141bd75cd0fb0770451a7b5693..c91743899013c95405a401465c373d13e5e3233f 100644
--- a/landingpage.html
+++ b/static/landingpage.html
@@ -1,9 +1,11 @@
 <html>
-<head><link rel="stylesheet" href="style.css"></head>
+<head><link rel="stylesheet" href="landingstyle.css"></head>
 <header>
+  <title>Tramshed Tech</title>
   <img src="logo.jpg"/><br><br><br><br>
 </header>
-<body class="body">
+<body>
   <img src="title.png"/>
   <button id= "ViewLocations" type="ViewLocations" href="locations.html">View Locations</button>
+</body>
 </html>
diff --git a/style.css b/static/landingstyle.css
similarity index 92%
rename from style.css
rename to static/landingstyle.css
index 85bdc71896bc8e60207bb82cd4c9610b8e17eedb..496bb079cca6cccfe95dfac79cc0822052fca366 100644
--- a/style.css
+++ b/static/landingstyle.css
@@ -12,11 +12,10 @@ button{
   background-color: white;
   color: black;
   text-align: center;
-  position: fixed;
+  position: absolute;
   margin: inherit;
   display: inline-block;
   line-height: 20px;
-  float: center;
   width: 10%;
   height: 15%;
   font-size: 16px;
@@ -26,7 +25,9 @@ button{
   font-family: monospace;
   font-style: oblique;
   font-weight: bolder;
+  cursor: pointer;
 }
 
 body{
   display: block;
+}
diff --git a/static/logo.jpg b/static/logo.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7a579221e061328e4b7d95bad5964a572398b79a
Binary files /dev/null and b/static/logo.jpg differ
diff --git a/static/title.png b/static/title.png
new file mode 100644
index 0000000000000000000000000000000000000000..ecd6448502b63a65b44067ae8bb7b05b64cacc43
Binary files /dev/null and b/static/title.png differ
diff --git a/templates/.gitkeep b/templates/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000