diff --git a/Privyet/Base.lproj/LaunchScreen.storyboard b/Privyet/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..c9426ba
--- /dev/null
+++ b/Privyet/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Privyet/Base.lproj/Main.storyboard b/Privyet/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..baf538e
--- /dev/null
+++ b/Privyet/Base.lproj/Main.storyboard
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PrivyetTests/Info.plist b/PrivyetTests/Info.plist
new file mode 100644
index 0000000..64d65ca
--- /dev/null
+++ b/PrivyetTests/Info.plist
@@ -0,0 +1,22 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ $(PRODUCT_BUNDLE_PACKAGE_TYPE)
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1
+
+
diff --git a/PrivyetTests/PrivyetTests.swift b/PrivyetTests/PrivyetTests.swift
new file mode 100644
index 0000000..1d5d743
--- /dev/null
+++ b/PrivyetTests/PrivyetTests.swift
@@ -0,0 +1,34 @@
+//
+// PrivyetTests.swift
+// PrivyetTests
+//
+// Created by Amy Bowersox on 5/23/20.
+// Copyright © 2020 Erbosoft Metaverse Design Solutions. All rights reserved.
+//
+
+import XCTest
+@testable import Privyet
+
+class PrivyetTests: XCTestCase {
+
+ override func setUpWithError() throws {
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+ }
+
+ override func tearDownWithError() throws {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ }
+
+ func testExample() throws {
+ // This is an example of a functional test case.
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
+ }
+
+ func testPerformanceExample() throws {
+ // This is an example of a performance test case.
+ self.measure {
+ // Put the code you want to measure the time of here.
+ }
+ }
+
+}
diff --git a/PrivyetUITests/Info.plist b/PrivyetUITests/Info.plist
new file mode 100644
index 0000000..64d65ca
--- /dev/null
+++ b/PrivyetUITests/Info.plist
@@ -0,0 +1,22 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ $(PRODUCT_BUNDLE_PACKAGE_TYPE)
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1
+
+
diff --git a/PrivyetUITests/PrivyetUITests.swift b/PrivyetUITests/PrivyetUITests.swift
new file mode 100644
index 0000000..15b869f
--- /dev/null
+++ b/PrivyetUITests/PrivyetUITests.swift
@@ -0,0 +1,43 @@
+//
+// PrivyetUITests.swift
+// PrivyetUITests
+//
+// Created by Amy Bowersox on 5/23/20.
+// Copyright © 2020 Erbosoft Metaverse Design Solutions. All rights reserved.
+//
+
+import XCTest
+
+class PrivyetUITests: XCTestCase {
+
+ override func setUpWithError() throws {
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+
+ // In UI tests it is usually best to stop immediately when a failure occurs.
+ continueAfterFailure = false
+
+ // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
+ }
+
+ override func tearDownWithError() throws {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ }
+
+ func testExample() throws {
+ // UI tests must launch the application that they test.
+ let app = XCUIApplication()
+ app.launch()
+
+ // Use recording to get started writing UI tests.
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
+ }
+
+ func testLaunchPerformance() throws {
+ if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) {
+ // This measures how long it takes to launch your application.
+ measure(metrics: [XCTOSSignpostMetric.applicationLaunch]) {
+ XCUIApplication().launch()
+ }
+ }
+ }
+}