diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js
index ea2ee11..29bb6eb 100755
--- a/src/assets/scripts/index.js
+++ b/src/assets/scripts/index.js
@@ -1,19 +1,19 @@
// import "@popperjs/core";
-import bootstrap from 'bootstrap';
+import bootstrap from "bootstrap";
-import '../styles/index.scss';
-import './fullcalendar';
-import './masonry';
-import './charts';
-import './popover';
-import './scrollbar';
-import './search';
-import './sidebar';
-import './skycons';
-import './vectorMaps';
-import './chat';
-import './datatable';
-import './datepicker';
-import './email';
-import './googleMaps';
-import './utils';
+import "../styles/index.scss";
+import "./fullcalendar";
+import "./masonry";
+import "./charts";
+import "./popover";
+import "./scrollbar";
+import "./search";
+import "./sidebar";
+import "./skycons";
+import "./vectorMaps";
+import "./chat";
+import "./datatable";
+import "./datepicker";
+import "./email";
+import "./googleMaps";
+import "./utils";
\ No newline at end of file
diff --git a/src/assets/scripts/main.js b/src/assets/scripts/main.js
new file mode 100644
index 0000000..4aa8233
--- /dev/null
+++ b/src/assets/scripts/main.js
@@ -0,0 +1,10 @@
+// Google Search
+
+function googleSearch() {
+ var text = document.getElementById("search-text").value;
+ text = text.replaceAll(" ", "+");
+ console.log(text);
+ if (text != undefined && text != null) {
+ window.open("https://www.google.com/search?q=" + text, '_blank');
+ }
+}
diff --git a/src/assets/styles/main.css b/src/assets/styles/main.css
new file mode 100644
index 0000000..a0ca82c
--- /dev/null
+++ b/src/assets/styles/main.css
@@ -0,0 +1,12 @@
+.search-image-container{
+ -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, transparent 95%);
+}
+.google-logo{
+ width: 30%;
+}
+.m-1r{
+ margin: 1rem!important;
+}
+.search-button{
+ width: 200px;
+}
\ No newline at end of file
diff --git a/src/home.html b/src/home.html
new file mode 100644
index 0000000..ae50ce3
--- /dev/null
+++ b/src/home.html
@@ -0,0 +1,1100 @@
+
+
+
+
+
+ Dashboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Total Page Views
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
100k
+
Visitors From USA
+
50%
+
+
+
+
1M
+
Visitors From Europe
+
80%
+
+
+
+
450k
+
Visitors From Australia
+
40%
+
+
+
+
1B
+
Visitors From India
+
90%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Monthly Stats
+
+
+
+
+
+
+
+ 10%
+ APPL
+
+
+ 2%
+ Average
+
+
+ 15%
+ Sales
+
+
+ 8%
+ Profit
+
+
+
+
+
+
+
+
+
+
+
+
+
Sales Report
+
+
+
+
+
+
November 2017
+
Sales Report
+
+
+
$6,000
+
+
+
+
+
+
+
+ | Name |
+ Status |
+ Date |
+ Price |
+
+
+
+
+ | Item #1 Name |
+ Unavailable |
+ Nov 18 |
+ $12 |
+
+
+ | Item #2 Name |
+ New |
+ Nov 19 |
+ $34 |
+
+
+ | Item #3 Name |
+ New |
+ Nov 20 |
+ -$45 |
+
+
+ | Item #4 Name |
+ Unavailable |
+ Nov 21 |
+ $65 |
+
+
+ | Item #5 Name |
+ Used |
+ Nov 22 |
+ $78 |
+
+
+ | Item #6 Name |
+ Used |
+ Nov 23 |
+ -$88 |
+
+
+ | Item #7 Name |
+ Old |
+ Nov 22 |
+ $56 |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Weather
+
+
+
+
+
+
+
+
+
+
+
+
+ Partly Clouds
+
+
+
+
+
+
+
Monday
+
+
+ Nov, 01 2017
+
+
+
+
+
+
+
+
+
+
+
+
+ Wind
+
+
+ 10km/h
+
+
+
+
+
+
+ Sunrise
+
+
+ 05:00 AM
+
+
+
+
+
+
+ Pressure
+
+
+ 1B
+
+
+
+
+
+
+
+
+
+
+
MON
+
+ 32°F
+
+
+
TUE
+
+ 30°F
+
+
+
WED
+
+ 28°F
+
+
+
THR
+
+ 32°F
+
+
+
FRI
+
+ 24°F
+
+
+
SAT
+
+ 28°F
+
+
+
SUN
+
+ 32°F
+
+
+
+
+
+
+
+
+
+
+
+
Quick Chat
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+ 10:00 AM
+
+
+ Lorem Ipsum is simply dummy text of
+
+
+
+
+
+
+ 10:00 AM
+
+
+ the printing and typesetting industry.
+
+
+
+
+
+
+ 10:00 AM
+
+
+ Lorem Ipsum has been the industry's
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+ 10:00 AM
+
+
+ Heloo
+
+
+
+
+
+
+ 10:00 AM
+
+
+ ??
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/index.html b/src/index.html
index ae50ce3..913aba0 100755
--- a/src/index.html
+++ b/src/index.html
@@ -1,10 +1,12 @@
-
-
- Dashboard
-
+
+
+ Blank
+
@@ -71,15 +77,15 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Total Page Views
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
100k
-
Visitors From USA
-
50%
-
-
-
-
1M
-
Visitors From Europe
-
80%
-
-
-
-
450k
-
Visitors From Australia
-
40%
-
-
-
-
1B
-
Visitors From India
-
90%
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Monthly Stats
-
-
-
-
-
-
-
- 10%
- APPL
-
-
- 2%
- Average
-
-
- 15%
- Sales
-
-
- 8%
- Profit
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
Sales Report
-
-
-
-
-
-
November 2017
-
Sales Report
-
-
-
$6,000
-
-
-
-
-
-
-
- | Name |
- Status |
- Date |
- Price |
-
-
-
-
- | Item #1 Name |
- Unavailable |
- Nov 18 |
- $12 |
-
-
- | Item #2 Name |
- New |
- Nov 19 |
- $34 |
-
-
- | Item #3 Name |
- New |
- Nov 20 |
- -$45 |
-
-
- | Item #4 Name |
- Unavailable |
- Nov 21 |
- $65 |
-
-
- | Item #5 Name |
- Used |
- Nov 22 |
- $78 |
-
-
- | Item #6 Name |
- Used |
- Nov 23 |
- -$88 |
-
-
- | Item #7 Name |
- Old |
- Nov 22 |
- $56 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Weather
-
-
-
-
-
-
-
-
-
-
-
-
- Partly Clouds
-
-
-
-
-
-
-
Monday
-
-
- Nov, 01 2017
-
-
-
-
+
+
+
-
-
-
-
-
-
-
- Wind
-
-
- 10km/h
-
-
-
-
-
-
- Sunrise
-
-
- 05:00 AM
-
-
-
-
-
-
- Pressure
-
-
- 1B
-
-
-
-
-
-
-
-
-
-
-
MON
-
- 32°F
-
-
-
TUE
-
- 30°F
-
-
-
WED
-
- 28°F
-
-
-
THR
-
- 32°F
-
-
-
FRI
-
- 24°F
-
-
-
SAT
-
- 28°F
-
-
-
SUN
-
- 32°F
-
-
-
-
-
-
-
-
-
-
-
-
Quick Chat
-
-
-
-
-
-
-
-

-
-
-
-
-
-
- 10:00 AM
-
-
- Lorem Ipsum is simply dummy text of
-
-
-
-
-
-
- 10:00 AM
-
-
- the printing and typesetting industry.
-
-
-
-
-
-
- 10:00 AM
-
-
- Lorem Ipsum has been the industry's
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
-
-
- 10:00 AM
-
-
- Heloo
-
-
-
-
-
-
- 10:00 AM
-
-
- ??
-
-
-
-
-
-
-
-
-
+
+

+
+
@@ -1092,9 +640,15 @@
+