Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Title:- Icons added to the Aboutus section in footer #483

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Frontend/src/CSS/Footer.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Croissant+One&family=Inconsolata:wght@200;900&family=Rubik:wght@300&display=swap");

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
:root {
--color-1: rgb(205, 180, 219);
--color-2: rgb(255, 200, 221);
Expand Down Expand Up @@ -97,6 +97,14 @@ ul li {
.social-icons svg:hover {
color: rgb(255, 0, 251);
}
.section i{
margin-bottom: 20px;
transition: transform 0.3s ease;
}
.section i:hover{
transform: translateY(-5px);
color: rgb(161, 14, 151);
}

@media (max-width: 768px) {
.footer {
Expand Down
68 changes: 47 additions & 21 deletions Frontend/src/Components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,26 @@ const Footer = () => {
<div className="section">
<h2>SpectaStyle</h2>
<div className="email-signup">
<input
type="email"
name="email"
placeholder="Enter Email"
style={{ border: "3px solid var(--color-6)", borderRadius: "10px" }}
/>
<input
type="email"
name="email"
placeholder="Enter Email"
style={{
border: "3px solid var(--color-6)",
borderRadius: "10px",
}}
/>
<button>Get monthly updates and free resources</button>
</div>
</div>

<div className="section">
<h2>Routes</h2>
<ul>
<li onClick={()=>navigate('/about')}>About Us</li>
<li onClick={() => navigate("/about")}>About Us</li>
<li>Services</li>
<li onClick={()=>navigate('/contact')}>Get In Touch</li>
<li onClick={()=>navigate('/faq')}>FAQ</li>
<li onClick={() => navigate("/contact")}>Get In Touch</li>
<li onClick={() => navigate("/faq")}>FAQ</li>
<div className="social-icons">
<Facebook />
<XIcon />
Expand All @@ -61,10 +64,25 @@ const Footer = () => {

<div className="section">
<h2>About Us</h2>
<z>Phone: +91 565 8989 878</z>
<z>Email: [email protected]</z>
<z>Address: 1234 Smart Street,Nagpur 440058</z>
<z style={{fontWeight:'bolder'}}>Design and Develop by <a style={{textDecoration:'none'}} href="https://harshalwebfolio.netlify.app">❤️Harshal Honde❤️</a></z>
<i className="fa fa-phone">
<z> Phone: +91 565 8989 878</z>
</i>

<i className="fa fa-envelope">
<z> Email: [email protected]</z>
</i>
<i className="fa fa-building">
<z> Address: 1234 Smart Street,Nagpur 440058</z>
</i>
<z style={{ fontWeight: "bolder" }}>
Design and Develop by{" "}
<a
style={{ textDecoration: "none" }}
href="https://harshalwebfolio.netlify.app"
>
❤️Harshal Honde❤️
</a>
</z>
</div>

<div className="section">
Expand All @@ -76,14 +94,22 @@ const Footer = () => {
</ul>
</div>
{showBackToTop && (
<div id="back-to-top-container">
<div class="circle1" onClick={scrollToTop}>
<svg id="back-to-top" xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="currentColor" class="bi bi-arrow-up-circle-fill" viewBox="0 0 16 16">
<path d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z"/>
</svg>
</div>
</div>
)}
<div id="back-to-top-container">
<div class="circle1" onClick={scrollToTop}>
<svg
id="back-to-top"
xmlns="http://www.w3.org/2000/svg"
width="40"
height="40"
fill="currentColor"
class="bi bi-arrow-up-circle-fill"
viewBox="0 0 16 16"
>
<path d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z" />
</svg>
</div>
</div>
)}
</footer>
</Fragment>
);
Expand Down