From babe7407748519ffc0aba56d9a43096a7ba10520 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:16:35 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 56 +++++++++++++------------------------------ 1 file changed, 17 insertions(+), 39 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index fe6c641..1dde7ff 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -16,7 +16,7 @@ export default function BlogPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -41,7 +41,7 @@ export default function BlogPage() { title="Finance & Tax Insights" description="Stay updated with the latest tax regulations, financial tips, and industry insights from our expert team." tag="Blog" - background={{ variant: "grid" }} + background={{ variant: "animated-grid" }} buttons={[ { text: "Browse Articles", href: "#" }, { text: "Subscribe", href: "contact" }, @@ -49,29 +49,19 @@ export default function BlogPage() { mediaItems={[ { imageSrc: - "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg?_wi=2", - imageAlt: "Tax planning calculation financial advisor", - }, + "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg", imageAlt: "Tax planning calculation financial advisor"}, { imageSrc: - "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg?_wi=2", - imageAlt: "financial dashboard analysis professional", - }, + "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg", imageAlt: "financial dashboard analysis professional"}, { imageSrc: - "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg?_wi=2", - imageAlt: "business meeting professional team collaboration", - }, + "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg", imageAlt: "business meeting professional team collaboration"}, { imageSrc: - "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg?_wi=2", - imageAlt: "audit compliance checking documents verification", - }, + "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg", imageAlt: "audit compliance checking documents verification"}, { imageSrc: - "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg?_wi=2", - imageAlt: "financial advisor consultant giving advice", - }, + "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg", imageAlt: "financial advisor consultant giving advice"}, ]} tagAnimation="slide-up" buttonAnimation="slide-up" @@ -83,30 +73,21 @@ export default function BlogPage() { title="Popular Tax Guides" description="Explore our comprehensive guides on tax planning, compliance requirements, and financial strategies for businesses and individuals." tag="Resources" - imageSrc="http://img.b2bpic.net/free-photo/female-business-leader-collaborative-meeting-feeling-sick-stressed_482257-123888.jpg?_wi=3" + imageSrc="http://img.b2bpic.net/free-photo/female-business-leader-collaborative-meeting-feeling-sick-stressed_482257-123888.jpg" imageAlt="Professional office environment workspace modern" mediaAnimation="slide-up" useInvertedBackground={false} mediaPosition="left" accordionItems={[ { - id: "1", - title: "Complete Guide to GST Compliance in 2025", - content: - "Learn everything about GST registration, filing requirements, and compliance deadlines. This comprehensive guide covers new regulations and compliance checklist for businesses of all sizes.", - }, + id: "1", title: "Complete Guide to GST Compliance in 2025", content: + "Learn everything about GST registration, filing requirements, and compliance deadlines. This comprehensive guide covers new regulations and compliance checklist for businesses of all sizes."}, { - id: "2", - title: "Income Tax Planning for Entrepreneurs", - content: - "Discover effective tax-saving strategies for business owners. From section 80C benefits to business expense deductions, optimize your tax liability and maximize returns.", - }, + id: "2", title: "Income Tax Planning for Entrepreneurs", content: + "Discover effective tax-saving strategies for business owners. From section 80C benefits to business expense deductions, optimize your tax liability and maximize returns."}, { - id: "3", - title: "Startup Compliance Roadmap", - content: - "A step-by-step guide for new entrepreneurs on company registration, tax registration, compliance requirements, and financial management practices.", - }, + id: "3", title: "Startup Compliance Roadmap", content: + "A step-by-step guide for new entrepreneurs on company registration, tax registration, compliance requirements, and financial management practices."}, ]} buttons={[{ text: "Read All Articles", href: "#" }]} buttonAnimation="slide-up" @@ -134,8 +115,7 @@ export default function BlogPage() { copyrightText="© 2025 Business Tax N All Private Limited. All rights reserved." columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -143,8 +123,7 @@ export default function BlogPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Income Tax Filing", href: "/services" }, { label: "GST Compliance", href: "/services" }, { label: "Company Registration", href: "/services" }, @@ -152,8 +131,7 @@ export default function BlogPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +91 91300 33385", href: "tel:+919130033385" }, { label: "Contact Form", href: "/contact" }, { label: "Pune, Maharashtra", href: "#" }, -- 2.49.1 From dc470d594b6c29a66aec311ab315dd44875f1edc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:16:35 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 138 ++++++++------------------------------- 1 file changed, 29 insertions(+), 109 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8cef3ec..e1f2bdf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -23,8 +23,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -32,8 +31,7 @@ export default function ContactPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Income Tax Filing", href: "/services" }, { label: "GST Compliance", href: "/services" }, { label: "Company Registration", href: "/services" }, @@ -41,8 +39,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +91 91300 33385", href: "tel:+919130033385" }, { label: "Contact Form", href: "/contact" }, { label: "Pune, Maharashtra", href: "#" }, @@ -58,7 +55,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -69,9 +66,7 @@ export default function ContactPage() { brandName="Business Tax N All" navItems={navItems} button={{ - text: "Book Consultation", - href: "/contact", - }} + text: "Book Consultation", href: "/contact"}} /> @@ -81,32 +76,22 @@ export default function ContactPage() { description="Expert guidance for individuals, businesses, and startups. We simplify taxation, compliance, and financial planning with professional expertise and personalized service." tag="5.0 ⭐ Google Rated" tagIcon={Star} - background={{ variant: "grid" }} + background={{ variant: "animated-grid" }} buttons={[ { text: "Book Consultation", href: "/contact" }, { text: "Learn Services", href: "/services" }, ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg?_wi=3", - imageAlt: "Finance Dashboard", - }, + imageSrc: "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg", imageAlt: "Finance Dashboard"}, { - imageSrc: "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg?_wi=3", - imageAlt: "Tax Planning", - }, + imageSrc: "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg", imageAlt: "Tax Planning"}, { - imageSrc: "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg?_wi=3", - imageAlt: "Business Meeting", - }, + imageSrc: "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg", imageAlt: "Business Meeting"}, { - imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg?_wi=3", - imageAlt: "Compliance Audit", - }, + imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg", imageAlt: "Compliance Audit"}, { - imageSrc: "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg?_wi=3", - imageAlt: "Financial Advisory", - }, + imageSrc: "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg", imageAlt: "Financial Advisory"}, ]} tagAnimation="slide-up" buttonAnimation="slide-up" @@ -117,10 +102,7 @@ export default function ContactPage() { Date: Tue, 10 Mar 2026 06:16:35 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 128 +++++++++++------------------------------------ 1 file changed, 28 insertions(+), 100 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5baea9a..3e8fadb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,7 +36,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -57,7 +57,7 @@ export default function HomePage() { tag="5.0 ⭐ Google Rated" tagIcon={Star} tagAnimation="slide-up" - background={{ variant: "grid" }} + background={{ variant: "animated-grid" }} buttons={[ { text: "Book Consultation", href: "contact" }, { text: "Learn Services", href: "services" }, @@ -65,25 +65,15 @@ export default function HomePage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg?_wi=1", - imageAlt: "Finance Dashboard", - }, + imageSrc: "http://img.b2bpic.net/free-photo/business-coworkers-paper-partnership-gesture-meeting_1418-590.jpg", imageAlt: "Finance Dashboard"}, { - imageSrc: "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg?_wi=1", - imageAlt: "Tax Planning", - }, + imageSrc: "http://img.b2bpic.net/free-photo/calculator-magnifying-glass-table_93675-135731.jpg", imageAlt: "Tax Planning"}, { - imageSrc: "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg?_wi=1", - imageAlt: "Business Meeting", - }, + imageSrc: "http://img.b2bpic.net/free-photo/group-call-center-workers-smiling-happy-confident-working-together-with-smile-face-using-headset-office_839833-9702.jpg", imageAlt: "Business Meeting"}, { - imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg?_wi=1", - imageAlt: "Compliance Audit", - }, + imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit-international-partners-young-guys-with-senior-man_1157-45579.jpg", imageAlt: "Compliance Audit"}, { - imageSrc: "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg?_wi=1", - imageAlt: "Financial Advisory", - }, + imageSrc: "http://img.b2bpic.net/free-photo/meeting-business-executives_1098-16498.jpg", imageAlt: "Financial Advisory"}, ]} /> @@ -92,10 +82,7 @@ export default function HomePage() {