diff --git a/src/components/Feedback.tsx b/src/components/Feedback.tsx new file mode 100644 index 0000000..874e5c1 --- /dev/null +++ b/src/components/Feedback.tsx @@ -0,0 +1,121 @@ +import { useState } from "react"; +import Button from "../ui/Button"; +import Input from "../ui/Input"; +import { Link } from "react-router"; + +const INTERESTS = ["Retail", "Office", "Residential"] as const; + +function Feedback() { + const [interests, setInterests] = useState<(typeof INTERESTS)[number][]>([]); + + function handleInterestClick(interest: (typeof INTERESTS)[number]) { + if (interests.includes(interest)) { + setInterests((prev) => prev.filter((i) => i !== interest)); + } else { + setInterests((prev) => [...prev, interest]); + } + } + + return ( +
Address
+Mesaimeer Street, Abu Hamour, Doha-Qata
+Management Office
++ Sabah Al Ahmad Corridor, Abu Hamour, Doha, Qatar +
+Email Address:
+ + info@barahatown.com + +Leasing Department:
+ + +974 5025 4555 + +Call Center:
+ + +974 4442 1073 + +{description}
+{description}
); } diff --git a/src/components/about/ComunityCard.tsx b/src/components/about/ComunityCard.tsx index a080b61..fbe2d1a 100644 --- a/src/components/about/ComunityCard.tsx +++ b/src/components/about/ComunityCard.tsx @@ -23,7 +23,7 @@ export default function ComunityCard({ > {icon}{text}
Baraha Town, with its numerous stores will be the ultimate fashion
diff --git a/src/components/icons/ChevronDownIcon.tsx b/src/components/icons/ChevronDownIcon.tsx
new file mode 100644
index 0000000..3daf638
--- /dev/null
+++ b/src/components/icons/ChevronDownIcon.tsx
@@ -0,0 +1,12 @@
+function ChevronDownIcon() {
+ return (
+
+ );
+}
+
+export default ChevronDownIcon;
diff --git a/src/components/icons/FacebookIcon.tsx b/src/components/icons/FacebookIcon.tsx
new file mode 100644
index 0000000..5717ee8
--- /dev/null
+++ b/src/components/icons/FacebookIcon.tsx
@@ -0,0 +1,55 @@
+function FacebookIcon() {
+ return (
+
+ );
+}
+
+export default FacebookIcon;
diff --git a/src/components/icons/InstagramIcon.tsx b/src/components/icons/InstagramIcon.tsx
new file mode 100644
index 0000000..5a9d957
--- /dev/null
+++ b/src/components/icons/InstagramIcon.tsx
@@ -0,0 +1,12 @@
+function InstagramIcon() {
+ return (
+
+ );
+}
+
+export default InstagramIcon;
diff --git a/src/components/icons/TwitterIcon.tsx b/src/components/icons/TwitterIcon.tsx
new file mode 100644
index 0000000..5236044
--- /dev/null
+++ b/src/components/icons/TwitterIcon.tsx
@@ -0,0 +1,12 @@
+function TwitterIcon() {
+ return (
+
+ );
+}
+
+export default TwitterIcon;
diff --git a/src/components/icons/WhatsappIcon.tsx b/src/components/icons/WhatsappIcon.tsx
new file mode 100644
index 0000000..cb7f9ce
--- /dev/null
+++ b/src/components/icons/WhatsappIcon.tsx
@@ -0,0 +1,12 @@
+function WhatsappIcon() {
+ return (
+
+ );
+}
+
+export default WhatsappIcon;
diff --git a/src/components/icons/YoutubeIcon.tsx b/src/components/icons/YoutubeIcon.tsx
new file mode 100644
index 0000000..7de8ad0
--- /dev/null
+++ b/src/components/icons/YoutubeIcon.tsx
@@ -0,0 +1,12 @@
+function YoutubeIcon() {
+ return (
+
+ );
+}
+
+export default YoutubeIcon;
diff --git a/src/components/layouts/NavMenu.tsx b/src/components/layouts/NavMenu.tsx
index f7c36d6..0b116ca 100644
--- a/src/components/layouts/NavMenu.tsx
+++ b/src/components/layouts/NavMenu.tsx
@@ -75,7 +75,7 @@ function NavMenu() {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
- className="md:hidden p-1 space-y-1 rounded-2xl bg-[#F0EDE6] fixed left-1/2 -translate-x-1/2 bottom-[75px] w-[177px]"
+ className="md:hidden p-1 space-y-1 rounded-2xl bg-[#F0EDE6] fixed z-10 left-1/2 -translate-x-1/2 bottom-[75px] w-[177px]"
>
Baraha Town is more
Step into Baraha Town, where every aspect
{subtitle}
- Enquire about joining this thriving community at the heart
- of Abu Hamour by contacting a member of our sales team today
-
-
-
+
+
+
Your Journey to a Perfect Life
@@ -69,7 +76,7 @@ function AboutBaraha() {
Begins in Baraha Town.
than a destination;
it’s a journey.
@@ -143,7 +150,7 @@ function Accordeons() {
return (
Your World, Reimagined
+ Your World, Reimagined
of your daily life is
designed for inspiration
and convenience.
diff --git a/src/ui/Accordeon.tsx b/src/ui/Accordeon.tsx
index f5287e5..109611a 100644
--- a/src/ui/Accordeon.tsx
+++ b/src/ui/Accordeon.tsx
@@ -36,7 +36,7 @@ export default function Accordeon({
{label}
+ {label}