diff --git a/.DS_Store b/.DS_Store index 91981e3e..86db35f4 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Faq.html b/Faq.html index 720ca396..d3b7f8ed 100644 --- a/Faq.html +++ b/Faq.html @@ -7,74 +7,84 @@ SkillWise FAQ - + - + - - + +
- SkillWise home Start Free Trial @@ -84,30 +94,26 @@
-
-
+ +
-

Frequently Asked Questions

-

At SkillWise, we are dedicated to providing a seamless learning experience for all our users. Whether you're curious about our course offerings, payment options, or certification details, you’ll find the answers to your most common questions here. We aim to make your journey with us as smooth and enjoyable as possible, empowering you to achieve your learning goals.

-
+
hero banner
-
@@ -128,7 +134,15 @@

Design, Modern Physics, Music Production, Finances, and more. All courses are designed by experts and provide practical knowledge for learners of all levels.

+ +
+

Was this helpful?

+ + +

+
+

2. What payment methods are accepted?

@@ -138,6 +152,13 @@

We accept a variety of payment methods including credit/debit cards, PayPal, and other online payment gateways. For more details, please refer to our Payment Method section.

+ +
+

Was this helpful?

+ + +

+
@@ -149,6 +170,13 @@

Yes! All courses provide a certificate of completion that can be downloaded and added to your resume or LinkedIn profile.

+ +
+

Was this helpful?

+ + +

+
@@ -161,42 +189,82 @@

browser or checking your internet connection. You can also reach out to our support team for further assistance.

+ +
+

Was this helpful?

+ + +

+
-

5. How long do I have access to a course after purchasing it?

+

5. Can I get a refund if I'm not satisfied with a course?

+

-

-

Once you purchase a course, you get lifetime access, allowing you to learn at your own pace.

+

Yes, we have a refund policy in place. Please refer to our Refund Policy section for more details + on how to request a refund.

+
+ +
+

Was this helpful?

+ + +

-

6. Do I need any prerequisites to enroll in a course?

+

6. How long do I have access to a course after purchasing it?

+

-

-

Most beginner courses do not require any prerequisites, but intermediate and advanced courses - might need some prior knowledge. You can find any required prerequisites mentioned in the course - description.

+

Once you purchase a course, you get lifetime access, allowing you to learn at your own pace.

+
+ +
+

Was this helpful?

+ + +

+
- - + - + + - \ No newline at end of file + diff --git a/README.md b/README.md index f44514b1..7a80d603 100644 --- a/README.md +++ b/README.md @@ -570,6 +570,13 @@ Thank you for your contributions to SkillWise!Every contribution, no matter the Anirban Singha + + + Adil-Khan-N +
+ Adil-Khan-N +
+ Aakansha-Chavan diff --git a/assets/.DS_Store b/assets/.DS_Store index fb67cd5d..16397084 100644 Binary files a/assets/.DS_Store and b/assets/.DS_Store differ diff --git a/assets/css/darkmode.css b/assets/css/darkmode.css index bb991874..6b70b035 100644 --- a/assets/css/darkmode.css +++ b/assets/css/darkmode.css @@ -98,6 +98,7 @@ button { cursor: pointer; } + html { font-family: var(--ff-gilroy); font-size: 10px; @@ -426,9 +427,38 @@ body.nav-active { overflow: hidden; } gap: 12px; } - - - +.button-container { + display: flex; + justify-content: center; /* Center horizontally */ + align-items: center; /* Center vertically */ + margin: 0; /* Remove default margin */ + padding: 0; /* Remove default padding */ +} + +.btn-primary { + position: relative; /* Positioning for the arrows */ + padding: 10px 50px; /* Add padding to make space for the arrows */ + transition: color 0.3s ease; /* Smooth transition for text color */ + font-size: 16px; /* Adjust font size as needed */ +} + +.btn-primary::after { + content: ' ⪢'; /* Two arrows as content */ + position: absolute; /* Position it absolutely */ + right: 5px; /* Position on the right side */ + top: 50%; /* Center vertically */ + transform: translateY(-55%); /* Adjust vertical position */ + opacity: 0; /* Start with the arrows hidden */ + transition: opacity 0.3s ease; /* Smooth transition for opacity */ +} + +.btn-primary:hover { + color: #ffffff; /* Change text color on hover (optional) */ +} + +.btn-primary:hover::after { + opacity: 1; /* Show the arrows on hover */ +} /*-----------------------------------*\ #CATEGORY diff --git a/assets/css/style.css b/assets/css/style.css index effc006d..25e5ab41 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -9,6 +9,9 @@ /*-----------------------------------*\ #CUSTOM PROPERTY \*-----------------------------------*/ +body, html { + overflow: auto !important; +} :root { --selective-yellow: hsl(42, 100%, 56%); @@ -204,7 +207,6 @@ body.nav-active { .btn { background-color: #1a1a1a; - /* border-radius: 20px; */ } :is(.btn-primary, .btn-secondary):is(:hover, :focus-visible) { @@ -468,7 +470,38 @@ body.nav-active { gap: 12px; } +.button-container { + display: flex; + justify-content: center; /* Center horizontally */ + align-items: center; /* Center vertically */ + margin: 0; /* Remove default margin */ + padding: 0; /* Remove default padding */ +} + +.btn-primary { + position: relative; /* Positioning for the arrows */ + padding: 10px 50px; /* Add padding to make space for the arrows */ + transition: color 0.3s ease; /* Smooth transition for text color */ + font-size: 16px; /* Adjust font size as needed */ +} +.btn-primary::after { + content: ' ⪢'; /* Two arrows as content */ + position: absolute; /* Position it absolutely */ + right: 5px; /* Position on the right side */ + top: 50%; /* Center vertically */ + transform: translateY(-55%); /* Adjust vertical position */ + opacity: 0; /* Start with the arrows hidden */ + transition: opacity 0.3s ease; /* Smooth transition for opacity */ +} + +.btn-primary:hover { + color: #ffffff; /* Change text color on hover (optional) */ +} + +.btn-primary:hover::after { + opacity: 1; /* Show the arrows on hover */ +} /*-----------------------------------*\ #Feedback @@ -483,7 +516,7 @@ body.nav-active { .feedback-button { position: fixed; - right: 20px; + left: 20px; bottom: 20px; background-color: hsl(357, 100%, 75%); color: white; @@ -1383,18 +1416,8 @@ button:hover { font-size: 1.8rem; border-radius: 10px; color: #fff; - width: 75%; - border: 2px solid transparent; /* Initial border */ - border-radius: 5px; /* Rounded corners */ - transition: border 0.3s ease, transform 0.3s ease; /* Smooth transition */ - text-align: center; /* Center the text */ - } - .btn:hover{ - border: 2px solid white; - transform: scale(1.05); - /* background-color: whitesmoke; - } */ } + /** * HEADER */ @@ -1560,6 +1583,7 @@ body.dark-mode .navbar a:hover { /* Hover effect for navbar buttons */ body.dark-mode .navbar a { + color: var(--white); } /* Other styles */ @@ -1733,8 +1757,7 @@ button:hover { justify-content: space-between; gap: 8px; - /* background: #FF8086; */ - background-color: var(--light-coral); + background: var(--light-gray); border-radius: 50px; position: relative; } @@ -1772,11 +1795,9 @@ button:hover { transform: translateY(0); } .searchInput::placeholder { - - color:rgba(0, 0, 0, 0.4); + color: var(--light-coral); } .searchInput { - margin-left: 10px; border: none; background: none; outline: none; @@ -1955,3 +1976,15 @@ body{ } } +.card-banner { + margin-bottom: 15px; /* Space between image and quote */ +} + +.grid-list { + margin-top: 30px; /* Space between heading and cards */ + margin-bottom: 30px; /* Space below cards */ +} + +.testimonial-content { + margin-bottom: 10px; /* Space between quote and name (optional) */ +} diff --git a/assets/images/.DS_Store b/assets/images/.DS_Store new file mode 100644 index 00000000..f2746ab7 Binary files /dev/null and b/assets/images/.DS_Store differ diff --git a/assets/images/X-logo.svg b/assets/images/X-logo.svg index a2d3c017..7c56b5b5 100644 --- a/assets/images/X-logo.svg +++ b/assets/images/X-logo.svg @@ -1,20 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/assets/images/testimonials/student1.jpg b/assets/images/testimonials/student1.jpg new file mode 100644 index 00000000..a4e19f87 Binary files /dev/null and b/assets/images/testimonials/student1.jpg differ diff --git a/assets/images/testimonials/student2.jpg b/assets/images/testimonials/student2.jpg new file mode 100644 index 00000000..e83e1190 Binary files /dev/null and b/assets/images/testimonials/student2.jpg differ diff --git a/assets/images/testimonials/student3.jpg b/assets/images/testimonials/student3.jpg new file mode 100644 index 00000000..3ce77ae1 Binary files /dev/null and b/assets/images/testimonials/student3.jpg differ diff --git a/index.html b/index.html index 0e4eb2de..a0d102cf 100644 --- a/index.html +++ b/index.html @@ -70,7 +70,7 @@
- SkillWise home + SkillWise home

@@ -801,9 +814,11 @@

- - View All Courses - +
+ + View All Courses + +
@@ -959,7 +974,11 @@

- View All Blogs +
+ + View All Blogs + +
@@ -1080,6 +1099,61 @@

Starting at $2,000.00 per month. + + +
+ +
+

What People Say

+ +

+ Hear from Our Clients +

+ +
    +
  • +
    +
    + Person giving testimonial +
    +
    +

    "The service was exceptional and exceeded all my expectations!"

    +

    John Doe

    +
    +
    +
  • +
  • +
    +
    + Person giving testimonial +
    +
    +

    "Outstanding service with exceptional attention to detail and professionalism!"

    +

    Jane Smith

    +
    +
    +
  • +
  • +
    +
    + Person giving testimonial +
    +
    +

    "Amazing experience! I felt heard and valued as a customer. Will definitely return!"

    +

    Emily Johnson

    +
    +
    +
  • +
+ + See All Testimonials +
+ +
+ + @@ -1275,14 +1349,75 @@
Starting at $2,000.00 per month.

Contact Us

+ +
+ + + + + + + + +
+ -
- - - - -
+ @@ -1291,6 +1426,8 @@

diff --git a/pages/Teacher Assignment Section b/pages/Teacher Assignment Section new file mode 100644 index 00000000..a32daaf3 --- /dev/null +++ b/pages/Teacher Assignment Section @@ -0,0 +1,88 @@ + + + + + + Document + + + + + +

Pricing

+ +
+
+
40%
+
+ +

129/month

+

save ₹50, billed annually

+

Total: $4644

+ +
+
+
+
30%
+
+ +

145/month

+

save ₹35, billed annually

+

Total: $4644

+ +
+
+
+
15%
+
+ +

160/month

+

save ₹25, billed annually

+

Total: $4644

+ +
+
+
+
+ +

165/month

+

save ₹ 10, billed annually

+

Total: $4644

+ +
+
+
+ + +
+

Assign a Plan to Your Students

+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+ + + + + + + +## New Feature: +> Teacher Assignment Section: A form that allows teachers to assign a subscription plan to a student. This can be useful in an academic or training environment where teachers or administrators can directly control the subscription details for students. diff --git a/terms.html b/terms.html index 7b34a4ec..b20c35e9 100644 --- a/terms.html +++ b/terms.html @@ -4,52 +4,111 @@ Terms of Use + - + -
-

Terms of Use

+
+

Terms of Use

+

Your access to our services is governed by the following terms.

-
+
-

Introduction

-

Welcome to our website! By accessing and using our site, you agree to the following Terms of Use.

+

Introduction

+

Welcome to SkillWise! By using our website, you agree to be bound by these Terms of Use. Please review them carefully.

-

1. Acceptance of Terms

-

By using our website, you agree to comply with and be bound by these terms.

+

1. Acceptance of Terms

+

By accessing and interacting with our services, you acknowledge that you have read and understood the terms and agree to comply with them fully.

-

2. Changes to Terms

-

We may update these terms from time to time. Please check this page regularly.

+

2. Updates to Terms

+

We reserve the right to update these terms periodically. Continued use of the website after changes signifies your acceptance of the modified terms.

-

3. User Conduct

-

Users must not engage in unlawful activities on the website.

+

3. User Responsibilities

+

All users are expected to interact responsibly and lawfully while using our platform. Activities violating local or international laws are strictly prohibited.

-

4. Intellectual Property

-

All content on this website is the property of SkillWise. You may not use this content without permission.

+

4. Intellectual Property Rights

+

All content on this site, including text, graphics, and code, belongs to SkillWise. Unauthorized use, reproduction, or distribution of our content is prohibited.

-

5. Limitation of Liability

-

We are not responsible for any damages resulting from the use of this website.

+

5. Liability Limitations

+

SkillWise is not liable for damages incurred as a result of using our platform, including but not limited to indirect or consequential losses.

-

6. Governing Law

-

These terms are governed by the laws.

+

6. Governing Jurisdiction

+

These terms are governed by the applicable laws of the user's jurisdiction. Any disputes shall be resolved under the governing laws in place.

-