diff --git a/Mini_projects/admin-dashboard/about.php b/Mini_projects/admin-dashboard/about.php
new file mode 100644
index 0000000..ded8db8
--- /dev/null
+++ b/Mini_projects/admin-dashboard/about.php
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+ About Us
+
+
+
+
+
+
+
About Us
+
Welcome to Kamino PVT (Ltd). We are dedicated to providing the best services to our customers.
+
+
Our Mission
+
To deliver high quality products and services that exceed our customers expectations.
+
+
Our Vision
+
To be a leading company in our industry, known for our innovation and customer satisfaction.
+
+
Our Values
+
+ - Integrity
+ - Excellence
+ - Teamwork
+ - Customer Focus
+
+
+
+
+
+
diff --git a/Mini_projects/admin-dashboard/contact.php b/Mini_projects/admin-dashboard/contact.php
new file mode 100644
index 0000000..c6e5062
--- /dev/null
+++ b/Mini_projects/admin-dashboard/contact.php
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+ Contact Us
+
+
+
+
+
+
+
+
+
+
diff --git a/Mini_projects/admin-dashboard/dashboard.php b/Mini_projects/admin-dashboard/dashboard.php
new file mode 100644
index 0000000..f020687
--- /dev/null
+++ b/Mini_projects/admin-dashboard/dashboard.php
@@ -0,0 +1,56 @@
+
+
+
+
+
+ Admin Dashboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Overview
+
Dashboard Content.
+
+
+
+
+
Sales last month
+
$2,340
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Mini_projects/admin-dashboard/footer.php b/Mini_projects/admin-dashboard/footer.php
new file mode 100644
index 0000000..e71dcbd
--- /dev/null
+++ b/Mini_projects/admin-dashboard/footer.php
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Mini_projects/admin-dashboard/navbar.php b/Mini_projects/admin-dashboard/navbar.php
new file mode 100644
index 0000000..e90b2f7
--- /dev/null
+++ b/Mini_projects/admin-dashboard/navbar.php
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Mini_projects/admin-dashboard/src/css/about.css b/Mini_projects/admin-dashboard/src/css/about.css
new file mode 100644
index 0000000..064ed5e
--- /dev/null
+++ b/Mini_projects/admin-dashboard/src/css/about.css
@@ -0,0 +1,43 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f4f4f4;
+}
+
+.about-container {
+ max-width: 800px;
+ margin: 40px auto;
+ padding: 20px;
+ background-color: white;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+}
+
+.about-container h1 {
+ margin-bottom: 20px;
+ color: #007bff;
+}
+
+.about-container h2 {
+ margin-top: 20px;
+ color: #333;
+}
+
+.about-container p {
+ margin-bottom: 15px;
+ line-height: 1.6;
+}
+
+.about-container ul {
+ list-style-type: disc;
+ padding-left: 20px;
+}
+
+.about-container ul li {
+ margin-bottom: 5px;
+}
diff --git a/Mini_projects/admin-dashboard/src/css/contact.css b/Mini_projects/admin-dashboard/src/css/contact.css
new file mode 100644
index 0000000..3f0ae71
--- /dev/null
+++ b/Mini_projects/admin-dashboard/src/css/contact.css
@@ -0,0 +1,74 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f4f4f4;
+}
+
+.contact-container {
+ max-width: 800px;
+ margin: 40px auto;
+ padding: 20px;
+ background-color: white;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+}
+
+.contact-container h1 {
+ margin-bottom: 20px;
+ color: #007bff;
+}
+
+.contact-container p {
+ margin-bottom: 15px;
+ line-height: 1.6;
+}
+
+/* Form styling */
+.contact-form {
+ display: flex;
+ flex-direction: column;
+}
+
+.form-group {
+ margin-bottom: 15px;
+}
+
+label {
+ margin-bottom: 5px;
+ font-weight: bold;
+}
+
+input[type="text"],
+input[type="email"],
+textarea {
+ padding: 10px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ width: 100%;
+ font-size: 16px;
+}
+
+button {
+ padding: 10px;
+ background-color: #007bff;
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 16px;
+}
+
+button:hover {
+ background-color: #0056b3;
+}
+
+@media (max-width: 768px) {
+ .contact-container {
+ padding: 15px;
+ }
+}
diff --git a/Mini_projects/admin-dashboard/src/css/dashboard.css b/Mini_projects/admin-dashboard/src/css/dashboard.css
new file mode 100644
index 0000000..0d33f8f
--- /dev/null
+++ b/Mini_projects/admin-dashboard/src/css/dashboard.css
@@ -0,0 +1,106 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f4f4f4;
+}
+
+.dashboard-container {
+ display: flex;
+ min-height: 100vh;
+}
+
+/* Sidebar */
+.sidebar {
+ width: 250px;
+ background-color: #333;
+ color: white;
+ padding: 20px;
+}
+
+.sidebar h2 {
+ margin-bottom: 20px;
+}
+
+.sidebar ul {
+ list-style: none;
+}
+
+.sidebar ul li {
+ margin: 15px 0;
+}
+
+.sidebar ul li a {
+ color: white;
+ text-decoration: none;
+ display: block;
+ padding: 10px;
+ background-color: #444;
+ border-radius: 5px;
+ transition: background 0.3s;
+}
+
+.sidebar ul li a:hover {
+ background-color: #555;
+}
+
+.main-content {
+ flex: 1;
+ padding: 20px;
+}
+
+.top-navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 20px;
+ background-color: #007bff;
+ color: white;
+}
+
+.top-navbar a {
+ color: white;
+ text-decoration: none;
+}
+
+.content {
+ margin-top: 20px;
+}
+
+h1 {
+ margin-bottom: 20px;
+}
+
+.dashboard-cards {
+ display: flex;
+ gap: 20px;
+ margin-top: 20px;
+}
+
+.card {
+ background-color: white;
+ padding: 20px;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ flex: 1;
+ text-align: center;
+}
+
+.card h3 {
+ margin-bottom: 10px;
+}
+
+.card p {
+ font-size: 24px;
+ font-weight: bold;
+}
+
+@media (max-width: 768px) {
+ .dashboard-cards {
+ flex-direction: column;
+ }
+}
diff --git a/Mini_projects/admin-dashboard/src/css/footer.css b/Mini_projects/admin-dashboard/src/css/footer.css
new file mode 100644
index 0000000..af0f167
--- /dev/null
+++ b/Mini_projects/admin-dashboard/src/css/footer.css
@@ -0,0 +1,41 @@
+.footer {
+ background-color: #333;
+ color: white;
+ padding: 20px;
+ text-align: center;
+ position: relative;
+ bottom: 0;
+ width: 100%;
+}
+
+.footer p {
+ margin: 0;
+ padding: 5px 0;
+}
+
+.footer-links {
+ margin-top: 10px;
+}
+
+.footer-links a {
+ color: white;
+ text-decoration: none;
+ margin: 0 10px;
+ transition: color 0.3s;
+}
+
+.footer-links a:hover {
+ color: #007bff;
+}
+
+@media (max-width: 768px) {
+ .footer-links {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .footer-links a {
+ margin: 5px 0;
+ }
+}
diff --git a/Mini_projects/admin-dashboard/src/css/nav.css b/Mini_projects/admin-dashboard/src/css/nav.css
new file mode 100644
index 0000000..8c64dce
--- /dev/null
+++ b/Mini_projects/admin-dashboard/src/css/nav.css
@@ -0,0 +1,37 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: Arial, sans-serif;
+ }
+
+ .navbar {
+ background-color: #333;
+ overflow: hidden;
+ }
+
+ .navbar a {
+ float: left;
+ display: block;
+ color: white;
+ text-align: center;
+ padding: 14px 20px;
+ text-decoration: none;
+ }
+
+ .navbar a:hover {
+ background-color: #ddd;
+ color: black;
+ }
+
+ @media screen and (max-width: 600px) {
+ .navbar a {
+ float: none;
+ display: block;
+ text-align: left;
+ }
+ }
+
\ No newline at end of file