Skip to content

Commit 9862fa1

Browse files
committed
FAQ + learn-more made responsive
1 parent d9a74cf commit 9862fa1

File tree

2 files changed

+45
-33
lines changed

2 files changed

+45
-33
lines changed

app/FAQ/page.tsx

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
1-
import { Metadata } from 'next'
2-
import FAQComponent from './component/faq-component'
3-
import ContactSection from './component/contact-section'
4-
import Navbar1 from '@/components/navbar'
5-
import Footer from '@/components/footer'
1+
import { Metadata } from "next";
2+
import FAQComponent from "./component/faq-component";
3+
import ContactSection from "./component/contact-section";
4+
import Navbar1 from "@/components/navbar";
5+
import Footer from "@/components/footer";
66

77
export const metadata: Metadata = {
8-
title: 'FAQ - Your Company Name',
9-
description: 'Frequently Asked Questions about our products and services',
10-
}
8+
title: "FAQ - Your Company Name",
9+
description: "Frequently Asked Questions about our products and services",
10+
};
1111

1212
export default function FAQPage() {
1313
return (
1414
<div className="min-h-screen space-y-12">
1515
<Navbar1 />
16-
<div className="text-center mb-12">
16+
<div className="text-center mb-12 px-4">
17+
{/* Added x-padding */}
1718
<div className="text-center mb-12">
18-
<h1 className="text-4xl font-bold mb-4 text-purple-500" >Frequently Asked Questions</h1>
19-
<p className="text-xl text-purple-600">Find answers to common questions about our products and services</p>
19+
<h1 className="text-4xl font-bold mb-4 text-purple-500">
20+
Frequently Asked Questions
21+
</h1>
22+
<p className="text-xl text-purple-600">
23+
Find answers to common questions about our products and services
24+
</p>
2025
</div>
2126
<FAQComponent />
22-
<div className="rounded-lg text-center w-[50%] mx-auto">
27+
<div className="rounded-lg text-center w-[100%] md:w-[60%] px-4 md:px-0 mx-auto">
28+
{/* Changed width for small screens */}
2329
<ContactSection />
2430
</div>
2531
</div>
2632
<Footer />
2733
</div>
28-
)
34+
);
2935
}
30-

app/learn-more/page.tsx

+26-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
'use client'
1+
"use client";
22

3-
import Link from 'next/link'
4-
import { motion } from 'framer-motion'
5-
import { TabContainer } from './components/TabContainer'
6-
import Navbar1 from '@/components/navbar'
7-
import Footer from '@/components/footer'
8-
import ShinyButton from '@/components/ui/shiny-button'
3+
import Link from "next/link";
4+
import { motion } from "framer-motion";
5+
import { TabContainer } from "./components/TabContainer";
6+
import Navbar1 from "@/components/navbar";
7+
import Footer from "@/components/footer";
8+
import ShinyButton from "@/components/ui/shiny-button";
99

1010
export default function LearnMorePage() {
1111
return (
1212
<div className="">
1313
<Navbar1 />
1414
<div className="min-h-screen bg-grey-500 bg-texture">
15-
<div className="container mx-auto px-32 py-16">
16-
<motion.h1
15+
<div className="container mx-auto px-4 md:px-32 pb-16 pt-8 md:pt-16">
16+
{/* Changed the x-padding for small devices + reduced y-padding-top for small devices */}
17+
<motion.h1
1718
className="text-5xl font-bold text-center mb-8 text-white-800 dark:text-grey-300"
1819
initial={{ y: -20, opacity: 0 }}
1920
animate={{ y: 0, opacity: 1 }}
@@ -24,25 +25,31 @@ export default function LearnMorePage() {
2425

2526
<TabContainer />
2627

27-
<motion.div
28+
<motion.div
2829
className="text-center bg-white/80 dark:bg-gray-800/80 backdrop-blur-sm rounded-lg p-8 shadow-lg mt-16"
2930
initial={{ y: 20, opacity: 0 }}
3031
animate={{ y: 0, opacity: 1 }}
3132
transition={{ delay: 0.4, duration: 0.5 }}
3233
>
33-
<h2 className="text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300">Want to Contribute ?</h2>
34-
<p className="text-xl mb-8 text-grey-700 dark:text-grey-200">Join hundreds of developers who have contributed to making LeetCode Journal better for everyone.</p>
34+
<h2 className="text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300">
35+
Want to Contribute ?
36+
</h2>
37+
<p className="text-xl mb-8 text-grey-700 dark:text-grey-200">
38+
Join hundreds of developers who have contributed to making
39+
LeetCode Journal better for everyone.
40+
</p>
3541
<ShinyButton>
3642
<Link
37-
href='https://github.com/yashksaini-coder/Leetcode-Journal'
38-
target='_blank'
39-
>Contribute Now</Link>
40-
</ShinyButton>
43+
href="https://github.com/yashksaini-coder/Leetcode-Journal"
44+
target="_blank"
45+
>
46+
Contribute Now
47+
</Link>
48+
</ShinyButton>
4149
</motion.div>
4250
</div>
4351
</div>
44-
<Footer/>
52+
<Footer />
4553
</div>
46-
)
54+
);
4755
}
48-

0 commit comments

Comments
 (0)