Skip to content

Commit

Permalink
Merge branch 'crescents-stack:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
musiur authored Jan 8, 2025
2 parents f6267e4 + 106eeec commit 195a90b
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/app/contact-us/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import ErrorMessages from "@/components/molecule/errors-messages";
import Loader from "@/components/molecule/loader";
import { useToast } from "@/components/ui/use-toast";
import { Building, MessageCircle, Phone } from "lucide-react";
import axios from "axios";
import Link from "next/link";
import ANIM__FadeInOutOnScroll from "@/components/anims/fadein.anim";
import { Action___POST__SendMail } from "./actions";
Expand Down
40 changes: 40 additions & 0 deletions src/app/meet-with-yeatiq/_utils/sections/bottom.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import WhatsAppIcon from "@/components/assets/whatsapp";
import { CheckCheckIcon, Mail, Phone } from "lucide-react";
import Image from "next/image";

const LandingBottomSection = () => {
return (
<div className="container section grid grid-cols-1 md:grid-cols-2 gap-10 items-center">
<Image
src="https://utfs.io/f/TLm9XcQ0Drp9UlZLWlhilgdbT9zuP1QmXAC4eyRZ8kHFS3sM"
alt="proof"
width={1000}
height={1000}
className="rounded-[40px] max-w-md shadow-2xl"
/>
<div className="space-y-4">
<p className="inline-block px-4 py-1 rounded-xl border">
Contact Me
</p>
<h2>Have Questions?</h2>
<p>Reach out anytime—I&apos;m happy to help!</p>
<ul className="space-y-2">
<li className="flex items-center gap-2">
<Mail className="w-6 h-6 min-w-6 bg-secondary/10 stroke-secondary rounded-full p-1" />{" "}
Email
</li>
<li className="flex items-center gap-2">
<Phone className="w-6 h-6 min-w-6 bg-secondary/10 stroke-secondary rounded-full p-1" />{" "}
+971507477541
</li>
<li className="flex items-center gap-2">
<WhatsAppIcon className="w-6 h-6 min-w-6 bg-secondary/10 stroke-[2px] stroke-secondary rounded-full p-1" />{" "}
+971507477541 (WhatsApp)
</li>
</ul>
</div>
</div>
);
};

export default LandingBottomSection;
2 changes: 1 addition & 1 deletion src/app/meet-with-yeatiq/_utils/sections/proof.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CheckCheckIcon, FastForwardIcon } from "lucide-react";
import { CheckCheckIcon } from "lucide-react";
import Image from "next/image";

const LandingProofSection = () => {
Expand Down
2 changes: 2 additions & 0 deletions src/app/meet-with-yeatiq/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import LandingCTASection from "./_utils/sections/cta";
import ClientsReviews from "../case-studies/_utils/clients-reviews";
import { Action___Get__Review_By_Category } from "../reviews/post/_utils/actions";
import LandingCalendlySection from "./_utils/sections/calendly";
import LandingBottomSection from "./_utils/sections/bottom";

const LandingPage = async () => {
const result = await Action___Get__Review_By_Category("socialmediapaidads");
Expand All @@ -22,6 +23,7 @@ const LandingPage = async () => {
<LandingVisualsSection />
<LandingCTASection />
<LandingCalendlySection />
<LandingBottomSection />
</Fragment>
);
};
Expand Down

0 comments on commit 195a90b

Please sign in to comment.