refactoring , dockerizing
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const AboutUsComponent = () =>{
|
||||
return (
|
||||
@@ -6,13 +7,13 @@ const AboutUsComponent = () =>{
|
||||
<div className="row">
|
||||
<div className="col-lg-7 col-md-7 col-sm-12 col-xs-12">
|
||||
<div className="aboutus_image">
|
||||
<figure className="mb-0"><img src="/assets/images/aboutus_image.png" alt="" className="img-fluid"/></figure>
|
||||
<figure className="mb-0"><Image src="/assets/images/aboutus_image.png" alt="" className="img-fluid"/></figure>
|
||||
</div>
|
||||
<figure className="aboutus_top_shape left_shape mb-0">
|
||||
<img src="/assets/images/aboutus_top_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/aboutus_top_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<figure className="aboutus_bottom_shape left_shape mb-0">
|
||||
<img src="/assets/images/aboutus_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/aboutus_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
<div className="col-lg-5 col-md-5 col-sm-12 col-xs-12" data-aos="fade-right">
|
||||
@@ -22,7 +23,7 @@ const AboutUsComponent = () =>{
|
||||
<p>Quis autem vel eum iure reprehenderit qui in eao voluptate velit esse quam nihil molestiae consequatur vel illum.</p>
|
||||
<div className="aboutus_line_wrapper">
|
||||
<h6>Modi tempora incidunt ut labore dolore magnam aliquam auerat volutaem.</h6>
|
||||
<figure className="mb-0 purple_line"><img src="/assets/images/aboutus_line.png" alt="" className="img-fluid" /></figure>
|
||||
<figure className="mb-0 purple_line"><Image src="/assets/images/aboutus_line.png" alt="" className="img-fluid" /></figure>
|
||||
</div>
|
||||
<div className="btn_wrapper">
|
||||
<a href="/about" className="text-decoration-none get_started_btn">Get Started</a>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const BlogPostsComponent = () => {
|
||||
@@ -16,7 +17,7 @@ const BlogPostsComponent = () => {
|
||||
<div className="row" data-aos="fade-up">
|
||||
<div className="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div className="blog_posts_image position-relative">
|
||||
<figure className="mb-0"><img src="/assets/images/blog_posts_1.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/blog_posts_1.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
<div className="blog_posts_image_content">
|
||||
<span>YOGA</span>
|
||||
@@ -30,7 +31,7 @@ const BlogPostsComponent = () => {
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div className="blog_posts_image position-relative">
|
||||
<figure className="mb-0"><img src="/assets/images/blog_posts_2.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/blog_posts_2.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
<div className="blog_posts_image_content">
|
||||
<span>FITNESS</span>
|
||||
@@ -47,10 +48,10 @@ const BlogPostsComponent = () => {
|
||||
<a href="/single-post.html" className="text-decoration-none view_blog">View All Blogs</a>
|
||||
</div>
|
||||
<figure className="blog_posts_left_shape left_shape mb-0">
|
||||
<img src="/assets/images/blog_posts_left_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/blog_posts_left_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<figure className="blog_posts_right_shape right_shape mb-0">
|
||||
<img src="/assets/images/blog_posts_right_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/blog_posts_right_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const ContactUsComponent = () => {
|
||||
@@ -39,7 +40,7 @@ const ContactUsComponent = () => {
|
||||
<div className="row">
|
||||
<div className="col-lg-12">
|
||||
<div className=" form-group mb-0">
|
||||
<textarea rows="3" name="comment" id="msg" className="form-control"
|
||||
<textarea rows={3} name="comment" id="msg" className="form-control"
|
||||
placeholder="Message"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
@@ -56,7 +57,7 @@ const ContactUsComponent = () => {
|
||||
<a className="popup-vimeo"
|
||||
href="https://previews.customer.envatousercontent.com/6720474d-ddc3-4b86-acf1-8d093cb37b6d/watermarked_preview/watermarked_preview.mp4">
|
||||
<figure className="video_img mb-0">
|
||||
<img className="thumb img-fluid" style={{"cursor": "pointer"}}
|
||||
<Image className="thumb img-fluid" style={{"cursor": "pointer"}}
|
||||
src="/assets/images/get_in_touch_video_icon.png" alt=""/>
|
||||
</figure>
|
||||
</a>
|
||||
@@ -64,7 +65,7 @@ const ContactUsComponent = () => {
|
||||
</div>
|
||||
</div>
|
||||
<figure className="get_in_touch_shape left_shape mb-0">
|
||||
<img src="/assets/images/get_in_touch_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/get_in_touch_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const FooterComponent = () => {
|
||||
@@ -7,10 +9,10 @@ const FooterComponent = () => {
|
||||
<div className="row">
|
||||
<div className="col-lg-3 col-md-4 col-sm-6 col-xs-12 d-lg-block d-none">
|
||||
<div className="footer_logo">
|
||||
<a href="/index.html" className="text-decoration-none">
|
||||
<figure className="mb-0"><img src="/assets/images/footer_logo.png" alt=""
|
||||
<Link href="/index.html" className="text-decoration-none">
|
||||
<figure className="mb-0"><Image src="/assets/images/footer_logo.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-3 col-md-4 col-sm-6 col-xs-12">
|
||||
@@ -35,19 +37,19 @@ const FooterComponent = () => {
|
||||
<h4>Quick Links</h4>
|
||||
<ul className="list-unstyled">
|
||||
<li>
|
||||
<a href="/index.html">Home</a>
|
||||
<Link href="/index.html">Home</Link>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/about.html">About Us</a>
|
||||
<Link href="/about.html">About Us</Link>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/services.html">Services</a>
|
||||
<Link href="/services.html">Services</Link>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/team.html">Team</a>
|
||||
<Link href="/team.html">Team</Link>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/contact.html">Contact Us</a>
|
||||
<Link href="/contact.html">Contact Us</Link>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -81,7 +83,7 @@ const FooterComponent = () => {
|
||||
</div>
|
||||
</div>
|
||||
<div className="footer_shape right_shape">
|
||||
<figure className="mb-0"><img src="/assets/images/footer_shape.png" alt="" className="img-fluid"/>
|
||||
<figure className="mb-0"><Image src="/assets/images/footer_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const HeaderComponent = () => {
|
||||
return (
|
||||
@@ -6,7 +7,7 @@ const HeaderComponent = () => {
|
||||
<div className="main_header">
|
||||
<div className="container-fluid">
|
||||
<nav className="navbar navbar-expand-lg navbar-light p-0">
|
||||
<a className="navbar-brand" href="/index"><figure className="mb-0"><img src="/assets/images/yogastic_logo.png" alt=""/></figure></a>
|
||||
<a className="navbar-brand" href="/index"><figure className="mb-0"><Image src="/assets/images/yogastic_logo.png" alt=""/></figure></a>
|
||||
<button className="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span className="navbar-toggler-icon"></span>
|
||||
<span className="navbar-toggler-icon"></span>
|
||||
@@ -121,22 +122,22 @@ const HeaderComponent = () => {
|
||||
<div className="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div className="banner-section-image">
|
||||
<figure className="mb-0">
|
||||
<img src="/assets/images/banner_right_image.png" alt="" />
|
||||
<Image src="/assets/images/banner_right_image.png" alt="" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<figure className="banner_left_top_shape left_shape mb-0">
|
||||
<img src="/assets/images/banner_left_top_shape.png" alt="" className="img-fluid" />
|
||||
<Image src="/assets/images/banner_left_top_shape.png" alt="" className="img-fluid" />
|
||||
</figure>
|
||||
<figure className="banner_left_bottom_shape left_shape mb-0">
|
||||
<img src="/assets/images/banner_left_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/banner_left_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<figure className="banner_right_top_shape right_shape mb-0">
|
||||
<img src="/assets/images/banner_right_top_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/banner_right_top_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<figure className="banner_right_bottom_shape right_shape mb-0">
|
||||
<img src="/assets/images/banner_right_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/banner_right_bottom_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const OurServiceComponent = () => {
|
||||
return (
|
||||
<section className="services_section">
|
||||
@@ -16,7 +18,7 @@ const OurServiceComponent = () => {
|
||||
<div className="col-lg-3 col-md-6 col-sm-6 col-xs-12">
|
||||
<div className="services_box_content">
|
||||
<div className="services_box_upper_portion">
|
||||
<figure className="mb-0"><img src="/assets/images/services_img_1.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/services_img_1.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
</div>
|
||||
<div className="services_box_lower_portion">
|
||||
@@ -32,7 +34,7 @@ const OurServiceComponent = () => {
|
||||
<div className="col-lg-3 col-md-6 col-sm-6 col-xs-12">
|
||||
<div className="services_box_content">
|
||||
<div className="services_box_upper_portion">
|
||||
<figure className="mb-0"><img src="/assets/images/services_img_2.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/services_img_2.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
</div>
|
||||
<div className="services_box_lower_portion">
|
||||
@@ -48,7 +50,7 @@ const OurServiceComponent = () => {
|
||||
<div className="col-lg-3 col-md-6 col-sm-6 col-xs-12">
|
||||
<div className="services_box_content">
|
||||
<div className="services_box_upper_portion">
|
||||
<figure className="mb-0"><img src="/assets/images/services_img_3.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/services_img_3.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
</div>
|
||||
<div className="services_box_lower_portion">
|
||||
@@ -64,7 +66,7 @@ const OurServiceComponent = () => {
|
||||
<div className="col-lg-3 col-md-6 col-sm-6 col-xs-12">
|
||||
<div className="services_box_content">
|
||||
<div className="services_box_upper_portion">
|
||||
<figure className="mb-0"><img src="/assets/images/services_img_4.png" alt=""
|
||||
<figure className="mb-0"><Image src="/assets/images/services_img_4.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
</div>
|
||||
<div className="services_box_lower_portion">
|
||||
@@ -79,11 +81,10 @@ const OurServiceComponent = () => {
|
||||
</div>
|
||||
</div>
|
||||
<figure className="services_left_shape left_shape mb-0">
|
||||
<img src="/assets/images/services_left_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/services_left_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const OurSpecialitiesComponent = () => {
|
||||
@@ -34,13 +35,13 @@ const OurSpecialitiesComponent = () => {
|
||||
<p className="specialties_paragraph">Neque orro quisquam est raui dolorem</p>
|
||||
</div>
|
||||
<figure className="specialties_left_line mb-0">
|
||||
<img src="/assets/images/specialties_left_line.png" alt="" className="img-fluid" />
|
||||
<Image src="/assets/images/specialties_left_line.png" alt="" className="img-fluid" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-4 col-sm-6 col-xs-12 d-md-block d-none">
|
||||
<figure className="specialties_image mb-0">
|
||||
<img src="/assets/images/specialties_image.png" alt="" className="img-fluid" />
|
||||
<Image src="/assets/images/specialties_image.png" alt="" className="img-fluid" />
|
||||
</figure>
|
||||
</div>
|
||||
<div className="col-lg-3 col-md-4 col-sm-6 col-xs-12" data-aos="fade-right">
|
||||
@@ -62,13 +63,13 @@ const OurSpecialitiesComponent = () => {
|
||||
<p className="specialties_paragraph">Neque orro quisquam est raui dolorem</p>
|
||||
</div>
|
||||
<figure className="specialties_right_line mb-0">
|
||||
<img src="/assets/images/specialties_right_line.png" alt="" className="img-fluid" />
|
||||
<Image src="/assets/images/specialties_right_line.png" alt="" className="img-fluid" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<figure className="our_specialties_right_shape right_shape mb-0">
|
||||
<img src="/assets/images/our_specialties_right_shape.png" alt="" className="img-fluid" />
|
||||
<Image src="/assets/images/our_specialties_right_shape.png" alt="" className="img-fluid" />
|
||||
</figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const PricingComponent = () => {
|
||||
@@ -19,11 +20,11 @@ const PricingComponent = () => {
|
||||
<div className="pricing_plans_box_content">
|
||||
<div className="pricing_plans_box_upper_portion">
|
||||
<figure className="pricing_plans_image mb-0">
|
||||
<img src="/assets/images/pricing_plan_1.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_1.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<div className="pricing_plans_box_image_content">
|
||||
<figure className="mb-0">
|
||||
<img src="/assets/images/pricing_plan_icon_1.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_icon_1.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
@@ -53,11 +54,11 @@ const PricingComponent = () => {
|
||||
<div className="pricing_plans_box_content">
|
||||
<div className="pricing_plans_box_upper_portion">
|
||||
<figure className="pricing_plans_image mb-0">
|
||||
<img src="/assets/images/pricing_plan_2.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_2.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<div className="pricing_plans_box_image_content">
|
||||
<figure className="mb-0">
|
||||
<img src="/assets/images/pricing_plan_icon_2.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_icon_2.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
@@ -86,11 +87,11 @@ const PricingComponent = () => {
|
||||
<div className="pricing_plans_box_content">
|
||||
<div className="pricing_plans_box_upper_portion">
|
||||
<figure className="pricing_plans_image mb-0">
|
||||
<img src="/assets/images/pricing_plan_3.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_3.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<div className="pricing_plans_box_image_content">
|
||||
<figure className="mb-0">
|
||||
<img src="/assets/images/pricing_plan_icon_3.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/pricing_plan_icon_3.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const QuotesComponent = () => {
|
||||
@@ -18,7 +19,7 @@ const QuotesComponent = () => {
|
||||
exercita ionem ullam corporis suscitnis officiis debitis aut rerum
|
||||
necessitatibus saepe
|
||||
evenietut aer voluptates”</p>
|
||||
<figure><img src="/assets/images/testimonial_image.png" alt=""
|
||||
<figure><Image src="/assets/images/testimonial_image.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
<p className="testimonial_person_name">Himala Joerge</p>
|
||||
<span>Happy client</span>
|
||||
@@ -34,7 +35,7 @@ const QuotesComponent = () => {
|
||||
exercita ionem ullam corporis suscitnis officiis debitis aut rerum
|
||||
necessitatibus saepe
|
||||
evenietut aer voluptates”</p>
|
||||
<figure><img src="/assets/images/testimonial_image.png" alt=""
|
||||
<figure><Image src="/assets/images/testimonial_image.png" alt=""
|
||||
className="img-fluid"/></figure>
|
||||
<p className="testimonial_person_name">Himala Joerge</p>
|
||||
<span>Happy client</span>
|
||||
@@ -55,10 +56,10 @@ const QuotesComponent = () => {
|
||||
</div>
|
||||
</div>
|
||||
<figure className="testimonial_left_shape left_shape mb-0">
|
||||
<img src="/assets/images/testimonial_left_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/testimonial_left_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
<figure className="testimonial_right_shape right_shape mb-0">
|
||||
<img src="/assets/images/testimonial_right_shape.png" alt="" className="img-fluid"/>
|
||||
<Image src="/assets/images/testimonial_right_shape.png" alt="" className="img-fluid"/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const SubscribeComponent = () => {
|
||||
return (
|
||||
@@ -22,7 +23,7 @@ const SubscribeComponent = () => {
|
||||
</div>
|
||||
<div className="col-lg-5 col-md-5 col-sm-6 col-xs-12">
|
||||
<figure className="subscribe_image mb-0">
|
||||
<img src="/assets/images/subscribe_image.png" alt=""/>
|
||||
<Image src="/assets/images/subscribe_image.png" alt=""/>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user