Update src/app/contact/page.tsx

This commit is contained in:
2026-03-20 14:16:57 +00:00
parent 719c39dfb9
commit b8bcf6536b

View File

@@ -48,9 +48,7 @@ export default function ContactPage() {
brandName="E2 Academy"
navItems={navItems}
button={{
text: "Book Demo",
href: "/contact",
}}
text: "Book Demo", href: "/contact"}}
/>
</div>
@@ -65,34 +63,20 @@ export default function ContactPage() {
mediaPosition="left"
inputs={[
{
name: "name",
type: "text",
placeholder: "Student's Name",
required: true,
name: "name", type: "text", placeholder: "Student's Name", required: true,
},
{
name: "class",
type: "text",
placeholder: "Current Class (8/9/10)",
required: true,
name: "class", type: "text", placeholder: "Current Class (8/9/10)", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
},
{
name: "email",
type: "email",
placeholder: "Parent's Email",
required: false,
name: "email", type: "email", placeholder: "Parent's Email", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Any specific concerns or requirements? (Optional)",
rows: 4,
name: "message", placeholder: "Any specific concerns or requirements? (Optional)", rows: 4,
required: false,
}}
buttonText="Book Demo Class"
@@ -106,19 +90,13 @@ export default function ContactPage() {
socialLinks={[
{
icon: Phone,
href: "tel:+919876543210",
ariaLabel: "Call E2 Academy",
},
href: "tel:+919876543210", ariaLabel: "Call E2 Academy"},
{
icon: Mail,
href: "mailto:info@e2academy.in",
ariaLabel: "Email E2 Academy",
},
href: "mailto:info@e2academy.in", ariaLabel: "Email E2 Academy"},
{
icon: MapPin,
href: "#",
ariaLabel: "Visit E2 Academy Location",
},
href: "#", ariaLabel: "Visit E2 Academy Location"},
]}
/>
</div>