diff --git a/app/FAQ/component/contact-section.tsx b/app/FAQ/component/contact-section.tsx index 45a49a5..cd0ad66 100644 --- a/app/FAQ/component/contact-section.tsx +++ b/app/FAQ/component/contact-section.tsx @@ -1,28 +1,32 @@ -import { Button } from "@/components/ui/button" -import { Mail, Phone } from 'lucide-react' +import { Button } from "@/components/ui/button"; +import { Mail, Phone } from "lucide-react"; export default function ContactSection() { return (
-

Still have questions?

-

Our support team is here to help you

-
+

+ Still have questions? +

+

+ Our support team is here to help you +

+
+ {/* Changed the alignment of buttons for small width devices */}
- ) + ); } - diff --git a/app/FAQ/component/faq-component.tsx b/app/FAQ/component/faq-component.tsx index bd09823..7302615 100644 --- a/app/FAQ/component/faq-component.tsx +++ b/app/FAQ/component/faq-component.tsx @@ -1,52 +1,60 @@ -'use client' +"use client"; -import { useState } from 'react' -import { Input } from "@/components/ui/input" +import { useState } from "react"; +import { Input } from "@/components/ui/input"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, -} from "@/components/ui/accordion" -import { Search } from 'lucide-react' +} from "@/components/ui/accordion"; +import { Search } from "lucide-react"; const faqs = [ - { - question: "What is Leetcode Journal, and how can it help me?", - answer: "Leetcode Journal is a tool designed to help developers track, organize, and review their Leetcode solutions. It provides an intuitive interface to save solutions, categorize problems, monitor progress, and analyze performance. It's great for personal learning and showcasing problem-solving skills." - }, - { - question: "Can I import my existing Leetcode solutions into the platform?", - answer: "Yes, Leetcode Journal supports solution imports. You can upload your solutions as files or manually enter them to categorize and analyze them within the platform." - }, - { - question: "How does the progress monitoring feature work?", - answer: "The progress monitoring feature provides detailed statistics on your problem-solving journey, including the number of problems solved by difficulty, topic, and monthly trends. It also shows your streaks and acceptance rates to keep you motivated." - }, - { - question: "Is my data secure on Leetcode Journal?", - answer: "We take data security seriously. All your solutions and progress data are encrypted and securely stored on our servers. You have complete control over your data, and it is never shared without your consent." - }, - { - question: "Can I share my Leetcode Journal with others?", - answer: "Yes, you can create a shareable portfolio of your solutions to showcase your problem-solving skills to potential employers or peers. You can customize what information is shared." - }, - { - question: "Does Leetcode Journal support team collaboration?", - answer: "Currently, Leetcode Journal is focused on individual users. However, we are exploring features for team collaboration and knowledge sharing in future updates." - } -] + { + question: "What is Leetcode Journal, and how can it help me?", + answer: + "Leetcode Journal is a tool designed to help developers track, organize, and review their Leetcode solutions. It provides an intuitive interface to save solutions, categorize problems, monitor progress, and analyze performance. It's great for personal learning and showcasing problem-solving skills.", + }, + { + question: "Can I import my existing Leetcode solutions into the platform?", + answer: + "Yes, Leetcode Journal supports solution imports. You can upload your solutions as files or manually enter them to categorize and analyze them within the platform.", + }, + { + question: "How does the progress monitoring feature work?", + answer: + "The progress monitoring feature provides detailed statistics on your problem-solving journey, including the number of problems solved by difficulty, topic, and monthly trends. It also shows your streaks and acceptance rates to keep you motivated.", + }, + { + question: "Is my data secure on Leetcode Journal?", + answer: + "We take data security seriously. All your solutions and progress data are encrypted and securely stored on our servers. You have complete control over your data, and it is never shared without your consent.", + }, + { + question: "Can I share my Leetcode Journal with others?", + answer: + "Yes, you can create a shareable portfolio of your solutions to showcase your problem-solving skills to potential employers or peers. You can customize what information is shared.", + }, + { + question: "Does Leetcode Journal support team collaboration?", + answer: + "Currently, Leetcode Journal is focused on individual users. However, we are exploring features for team collaboration and knowledge sharing in future updates.", + }, +]; export default function FAQComponent() { - const [searchTerm, setSearchTerm] = useState('') + const [searchTerm, setSearchTerm] = useState(""); - const filteredFaqs = faqs.filter(faq => - faq.question.toLowerCase().includes(searchTerm.toLowerCase()) || - faq.answer.toLowerCase().includes(searchTerm.toLowerCase()) - ) + const filteredFaqs = faqs.filter( + (faq) => + faq.question.toLowerCase().includes(searchTerm.toLowerCase()) || + faq.answer.toLowerCase().includes(searchTerm.toLowerCase()) + ); return ( -
+
+ {/* Added x-padding for small width devices */}
setSearchTerm(e.target.value)} className="w-full pl-10 pr-4 py-2 rounded-full border-2 border-purple-300 focus:border-purple-500 focus:ring focus:ring-purple-200 focus:ring-opacity-50 transition duration-300" /> - +
{filteredFaqs.map((faq, index) => ( - - {faq.question} + + {faq.question} + -

- {faq.answer} -

+

{faq.answer}

))}
{filteredFaqs.length === 0 && (
-

No matching questions found.

+

+ No matching questions found. +

Try adjusting your search terms or browse all FAQs above.

)}
- ) + ); } diff --git a/app/FAQ/page.tsx b/app/FAQ/page.tsx index 362bd42..995deb8 100644 --- a/app/FAQ/page.tsx +++ b/app/FAQ/page.tsx @@ -1,13 +1,13 @@ -import { Metadata } from 'next' -import FAQComponent from './component/faq-component' -import ContactSection from './component/contact-section' -import Navbar1 from '@/components/navbar' -import Footer from '@/components/footer' +import { Metadata } from "next"; +import FAQComponent from "./component/faq-component"; +import ContactSection from "./component/contact-section"; +import Navbar1 from "@/components/navbar"; +import Footer from "@/components/footer"; export const metadata: Metadata = { - title: 'FAQ - Your Company Name', - description: 'Frequently Asked Questions about our products and services', -} + title: "FAQ - Your Company Name", + description: "Frequently Asked Questions about our products and services", +}; export default function FAQPage() { return ( @@ -15,16 +15,21 @@ export default function FAQPage() {
-

Frequently Asked Questions

-

Find answers to common questions about our products and services

+

+ Frequently Asked Questions +

+

+ {/* Added x-padding */} + Find answers to common questions about our products and services +

-
+
+ {/* Changed the width for small devices */}
- ) + ); } - diff --git a/app/learn-more/page.tsx b/app/learn-more/page.tsx index 5937662..5b2db7b 100644 --- a/app/learn-more/page.tsx +++ b/app/learn-more/page.tsx @@ -1,19 +1,20 @@ -'use client' +"use client"; -import Link from 'next/link' -import { motion } from 'framer-motion' -import { TabContainer } from './components/TabContainer' -import Navbar1 from '@/components/navbar' -import Footer from '@/components/footer' -import ShinyButton from '@/components/ui/shiny-button' +import Link from "next/link"; +import { motion } from "framer-motion"; +import { TabContainer } from "./components/TabContainer"; +import Navbar1 from "@/components/navbar"; +import Footer from "@/components/footer"; +import ShinyButton from "@/components/ui/shiny-button"; export default function LearnMorePage() { return (
-
- + {/* Changed the x-padding for small devices + reduced y-padding-top for small devices */} + - -

Want to Contribute ?

-

Join hundreds of developers who have contributed to making LeetCode Journal better for everyone.

+

+ Want to Contribute ? +

+

+ Join hundreds of developers who have contributed to making + LeetCode Journal better for everyone. +

Contribute Now - + href="https://github.com/yashksaini-coder/Leetcode-Journal" + target="_blank" + > + Contribute Now + +
-
+
- ) + ); } - diff --git a/components/ui/shiny-button.tsx b/components/ui/shiny-button.tsx index bd8455f..68a3d0e 100644 --- a/components/ui/shiny-button.tsx +++ b/components/ui/shiny-button.tsx @@ -44,7 +44,7 @@ const ShinyButton = React.forwardRef( {...props} className={cn( "relative rounded-lg px-6 py-2 font-medium backdrop-blur-xl transition-shadow duration-300 ease-in-out hover:shadow dark:bg-[radial-gradient(circle_at_50%_0%,hsl(var(--primary)/10%)_0%,transparent_60%)] dark:hover:shadow-[0_0_20px_hsl(var(--primary)/10%)]", - className, + className )} > ( > ); - }, + } ); ShinyButton.displayName = "ShinyButton"; diff --git a/package-lock.json b/package-lock.json index 103eb1f..09d9fa0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1633,6 +1633,7 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.1.6.tgz", "integrity": "sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==", + "license": "MIT", "dependencies": { "@radix-ui/primitive": "1.1.1", "@radix-ui/react-compose-refs": "1.1.1", @@ -1905,6 +1906,7 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/@supabase/ssr/-/ssr-0.5.2.tgz", "integrity": "sha512-n3plRhr2Bs8Xun1o4S3k1CDv17iH5QY9YcoEvXX3bxV1/5XSasA0mNXYycFmADIdtdE6BG9MRjP5CGIs8qxC8A==", + "license": "MIT", "dependencies": { "@types/cookie": "^0.6.0", "cookie": "^0.7.0"