Skip to content

Commit

Permalink
Merge pull request #76 from abhayybhatt/fix/incorrect-heading-alignment
Browse files Browse the repository at this point in the history
Fix: Misalignment of Headings from Testimonials and About Us pages
  • Loading branch information
Mujtabaa07 authored Jan 1, 2025
2 parents 54417b3 + b5ea244 commit dd5eed5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pages/Testimonial.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

.testimonial{
background:#f8f8f8;
height:90vh;
padding: 2rem 0;
}
h1{
text-align: center;
Expand Down
3 changes: 2 additions & 1 deletion src/Pages/Testimonial.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import './Testimonial.css'
<div className="testimonial">

<div className="container">
<h1>What Our Customer Says</h1>
<h1 className = "mt-5">What Our Customers Say:</h1>
<br></br>
<div className="row">
<div className="col-md-12">
<div id="carouselExampleSlidesOnly" className="carousel slide" data-bs-ride="carousel">
Expand Down
1 change: 1 addition & 0 deletions src/Pages/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ function Contact() {
return (
<ContactContainer>
<Title
className = "mt-7"
initial={{ opacity: 0, y: -50 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
Expand Down

0 comments on commit dd5eed5

Please sign in to comment.