-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added content to about page. Responsive. Focus trap needs to be fixed
- Loading branch information
Showing
14 changed files
with
109 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,28 @@ | ||
<script> | ||
<script setup> | ||
import TitleWithLine from "./TitleWithLine.vue"; | ||
export default { | ||
name: "WhyChooseUs", | ||
}; | ||
import WhyChooseUsCard from "./pages/about/WhyChooseUsCard.vue"; | ||
</script> | ||
|
||
<template> | ||
<TitleWithLine :title="service" /> | ||
<section> | ||
<div class="flex flex-col mb-[40px]"> | ||
<h2 class="capitalize mb-[24px] text-4xl font-semibold leading-[170%]"> | ||
<div class="flex px-[20px] items-center lg:items-start flex-col mb-[40px]"> | ||
<h2 class="capitalize mb-[24px] text-2xl font-semibold leading-[170%]"> | ||
why choose us | ||
</h2> | ||
<p class="max-w-[470px] text-lg font-normal leading-[160%]"> | ||
<p class="max-w-[500px] text-sm font-normal leading-[160%] text-grayscale10"> | ||
Customize your interior design into a dream place with the best | ||
designers and quality furniture. We try our best to fulfill your | ||
expectations. | ||
</p> | ||
</div> | ||
|
||
<div class="flex justify-between gap-5"> | ||
<div | ||
class="flex flex-col justify-center items-center min-h-[295px] space-y-[20px] bg-yellow-300 border border-black" | ||
> | ||
<!-- circle --> | ||
<div class="rounded-full w-[63px] h-[63px] bg-[#D9D9D9]"></div> | ||
<p class="capitalize text-2xl font-semibold leading-[140%]"> | ||
high quality | ||
</p> | ||
<p | ||
class="min-h-[116px] text-lg font-normal leading-[160%]" | ||
> | ||
Customize your interior design into a dream place with the best | ||
designers and quality furniture. We try our best to fulfill your | ||
expectations. | ||
</p> | ||
</div> | ||
<div | ||
class="flex flex-col justify-center items-center min-h-[295px] space-y-[20px] bg-yellow-300 border border-black" | ||
> | ||
<!-- circle --> | ||
<div class="rounded-full w-[63px] h-[63px] bg-[#D9D9D9]"></div> | ||
<p class="capitalize text-2xl font-semibold leading-[140%]"> | ||
professional designer | ||
</p> | ||
<p | ||
class="min-h-[116px] text-lg font-normal leading-[160%]" | ||
> | ||
Customize your interior design into a dream place with the best | ||
designers and quality furniture. We try our best to fulfill your | ||
expectations. | ||
</p> | ||
</div> | ||
<div | ||
class="flex flex-col justify-between items-center min-h-[295px] space-y-[20px] bg-yellow-300 border border-black" | ||
> | ||
<!-- circle --> | ||
<div class="rounded-full w-[63px] h-[63px] bg-[#D9D9D9]"></div> | ||
<p class="capitalize text-2xl font-semibold leading-[140%]"> | ||
the best services | ||
</p> | ||
<p | ||
class=" min-h-[116px] text-lg font-normal leading-[160%]" | ||
> | ||
Customize your interior design into a dream place with the best | ||
designers and quality furniture. We try our best to fulfill your | ||
expectations. | ||
</p> | ||
</div> | ||
<div class="flex flex-col items-center justify-between gap-5 lg:items-start px- lg:flex-row"> | ||
<WhyChooseUsCard :title="'High Quality'" :description="'Indulge in exceptional craftsmanship and superior quality. Our handpicked selection of furniture and decor ensures that every piece in your space is built to last and impress.'"/> | ||
<WhyChooseUsCard :title="'Professional Designer'" :description="'Unlock the expertise of our skilled designers. Collaborate with our team to curate a personalized interior that reflects your unique taste and lifestyle.'"/> | ||
<WhyChooseUsCard :title="'The Best Services'" :description="'Experience unparalleled customer satisfaction. From concept to completion, we provide comprehensive support, ensuring a seamless and stress-free journey towards your dream home.'"/> | ||
|
||
</div> | ||
|
||
</section> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<script> | ||
export default { | ||
name: "IntroSection", | ||
props: { | ||
title: { | ||
type: String, | ||
required: true, | ||
}, | ||
description: { | ||
type: String, | ||
required: true, | ||
}, | ||
imageSrc: { | ||
type: String, | ||
required: true, | ||
}, | ||
}, | ||
}; | ||
</script> | ||
|
||
<template> | ||
<section class="mb-[100px] container max-w-[1200px] mx-auto border"> | ||
<div class="flex flex-col items-center border border-black"> | ||
<h2 class="text-[56px] max-w-[600px] font-bold leading-[140%] mb-[36px]"> | ||
{{ title }} | ||
</h2> | ||
<p | ||
class="text-center max-w-[600px] text-sm font-normal leading-[160%] mb-[57px]" | ||
> | ||
{{ description }} | ||
</p> | ||
<div class="max-w-[1200px]"> | ||
<img src="../../../assets/about/about_intro.svg" alt="image" /> | ||
</div> | ||
</div> | ||
</section> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script setup> | ||
defineProps({ | ||
title: String, | ||
required: true, | ||
description: String, | ||
require: true, | ||
}) | ||
</script> | ||
|
||
<template> | ||
<div class="flex max-w-[388px] justify-between gap-5"> | ||
<div | ||
class="flex flex-col justify-center items-center min-h-[295px] space-y-[20px] shadow-md py-5 white border" | ||
> | ||
<!-- circle --> | ||
<div class="rounded-full w-[63px] h-[63px] bg-[#D9D9D9]"></div> | ||
<p class="capitalize text-lg font-semibold leading-[140%]"> | ||
{{ title }} | ||
</p> | ||
<p | ||
class="text-sm font-normal leading-[160%] text-grayscale10 px-[27px]" | ||
> | ||
{{ description }} | ||
</p> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters