-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from Octalogic-Tech/patch/ui-improvements-part…
…-III Improved about page and contact page.
- Loading branch information
Showing
2 changed files
with
24 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import React from "react"; | ||
import { Metadata } from "next"; | ||
|
||
import Paragraph from "@/components/paragraph/paragraph"; | ||
import Heading from "@/components/heading/heading"; | ||
import { ContactForm } from "@/components/contact-form/contact-form"; | ||
|
||
|
@@ -18,19 +17,19 @@ export const metadata: Metadata = { | |
function ContactPage() { | ||
return ( | ||
<div> | ||
<Heading size="large" className="mb-4 mt-16 text-center "> | ||
<Heading size="large" className="mb-4 mt-[4.25rem] text-center text-[#26a69a]"> | ||
Let's have a conversation | ||
</Heading> | ||
<Paragraph className="text-xl text-center opacity-80 mb-4 leading-6"> | ||
<p className="text-[16px] text-center opacity-80 mb-4 leading-6 text-[#212529]"> | ||
[email protected] | +91 7030518285 | ||
</Paragraph> | ||
<Paragraph className="text-xl text-center opacity-80 mb-4 leading-6"> | ||
</p> | ||
<p className="text-[16px] text-center opacity-80 mb-4 leading-6 text-[#212529]"> | ||
3rd Floor, Sunivas Building, Near Taj Vivanta, St. Inez, Goa | ||
</Paragraph> | ||
<Paragraph className="w-3/5 text-center text-base mx-auto mb-4 leading-6 opacity-95 mt-6"> | ||
</p> | ||
<p className="w-3/5 text-[16px] text-center text-base mx-auto mb-4 leading-6 opacity-95 mt-6 text-[#212529]"> | ||
Send us a message and we'll get in touch with you shortly to better understand your | ||
needs and brainstorm possible solutions. | ||
</Paragraph> | ||
</p> | ||
<ContactForm apiUrl={apiUrl} /> | ||
<div className="w-full pt-[43.478%] bg-no-repeat bg-cover bg-center bg-[url('/images/contact_background.svg')]"></div> | ||
</div> | ||
|