Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed FAQs + learn-more responsiveness #87

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5ad4a7b
Footer made dynamic
parthratra11 Jan 9, 2025
2c77d70
Merge pull request #1 from parthratra11/dev
parthratra11 Jan 9, 2025
e25ca2c
Copyright centered + Footer padding fixed
parthratra11 Jan 9, 2025
132f0c2
Merge pull request #2 from parthratra11/dev
parthratra11 Jan 9, 2025
05f9eb6
Merge branch 'yashksaini-coder:main' into main
parthratra11 Jan 9, 2025
d4bdfdd
Update README.md
parthratra11 Jan 9, 2025
3a77e82
Theme toggle button fixed
parthratra11 Jan 10, 2025
e661111
Merge pull request #3 from parthratra11/dev
parthratra11 Jan 10, 2025
81e30ac
Hide/Unhide button added for password
parthratra11 Jan 11, 2025
0d3ee6e
Hide/Unhide button added on password v2
parthratra11 Jan 11, 2025
d7bc49c
Dev branch commit
parthratra11 Jan 11, 2025
b0b1c78
Navbar made responsive
parthratra11 Jan 11, 2025
0c143f4
Navbar made responsive v2
parthratra11 Jan 11, 2025
c96580c
Update README.md
parthratra11 Jan 13, 2025
4ecc762
Delete components/ui/shiny-button.tsx
yashksaini-coder Jan 13, 2025
273f103
Merge branch 'main' of https://github.com/parthratra11/Leetcode-Journ…
parthratra11 Jan 13, 2025
17900c9
FAQs + learn-more made responsive
parthratra11 Jan 13, 2025
c1f1eb8
Merge branch 'dev' of https://github.com/parthratra11/Leetcode-Journa…
parthratra11 Jan 13, 2025
6103e30
FAQs + learn-more made responsive
parthratra11 Jan 13, 2025
065059d
Merge branch 'main' of https://github.com/parthratra11/Leetcode-Journ…
parthratra11 Jan 13, 2025
c4b9655
FAQs + learn-more made responsive
parthratra11 Jan 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 19 additions & 15 deletions app/FAQ/component/contact-section.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className="mt-16 bg-white rounded-lg p-8 text-center">
<h2 className="text-2xl font-bold text-purple-800 mb-4">Still have questions?</h2>
<p className="text-purple-600 mb-6">Our support team is here to help you</p>
<div className="flex justify-center space-x-4">
<h2 className="text-2xl font-bold text-purple-800 mb-4">
Still have questions?
</h2>
<p className="text-purple-600 mb-6">
Our support team is here to help you
</p>
<div className="flex justify-center space-x-4 flex-row">
{/* Changed the alignment of buttons for small width devices */}
<Button
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
>
<Mail size={20} />
<span>Email Us</span>
<Mail size={20} />
<span>Email Us</span>
</Button>
<Button
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
variant="outline"
className="flex items-center space-x-2 bg-white hover:bg-purple-300 text-black hover:text-black"
>
<Phone size={20} />
<span>Call Us</span>
<Phone size={20} />
<span>Call Us</span>
</Button>
</div>
</div>
)
);
}

103 changes: 58 additions & 45 deletions app/FAQ/component/faq-component.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className="max-w-3xl mx-auto">
<div className="max-w-3xl mx-auto px-4 md:px-0">
{/* Added x-padding for small width devices */}
<div className="mb-8 relative">
<Input
type="text"
Expand All @@ -55,32 +63,37 @@ export default function FAQComponent() {
onChange={(e) => 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"
/>
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-purple-400" size={20} />
<Search
className="absolute left-3 top-1/2 transform -translate-y-1/2 text-purple-400"
size={20}
/>
</div>
<Accordion type="single" collapsible className="w-full space-y-4">
{filteredFaqs.map((faq, index) => (
<AccordionItem
value={`item-${index}`}
<AccordionItem
value={`item-${index}`}
key={index}
className="border-2 border-purple-400 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition duration-300"
>
<AccordionTrigger className="text-left px-6 py-4 light:bg-purple-200 dark:bg-white hover:bg-purple-50 transition duration-300">
<span className="text-lg font-medium text-purple-800">{faq.question}</span>
<span className="text-lg font-medium text-purple-800">
{faq.question}
</span>
</AccordionTrigger>
<AccordionContent className="px-6 py-4 bg-purple-200">
<p className="text-purple-700 text-left">
{faq.answer}
</p>
<p className="text-purple-700 text-left">{faq.answer}</p>
</AccordionContent>
</AccordionItem>
))}
</Accordion>
{filteredFaqs.length === 0 && (
<div className="text-center text-purple-600 mt-8 p-6 bg-purple-100 rounded-lg">
<p className="text-xl font-semibold mb-2">No matching questions found.</p>
<p className="text-xl font-semibold mb-2">
No matching questions found.
</p>
<p>Try adjusting your search terms or browse all FAQs above.</p>
</div>
)}
</div>
)
);
}
31 changes: 18 additions & 13 deletions app/FAQ/page.tsx
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
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 (
<div className="min-h-screen space-y-12">
<Navbar1 />
<div className="text-center mb-12">
<div className="text-center mb-12">
<h1 className="text-4xl font-bold mb-4 text-purple-500" >Frequently Asked Questions</h1>
<p className="text-xl text-purple-600">Find answers to common questions about our products and services</p>
<h1 className="text-4xl font-bold mb-4 text-purple-500">
Frequently Asked Questions
</h1>
<p className="text-xl text-purple-600 px-4">
{/* Added x-padding */}
Find answers to common questions about our products and services
</p>
</div>
<FAQComponent />
<div className="rounded-lg text-center w-[50%] mx-auto">
<div className="rounded-lg text-center w-[100%] px-4 md:w-[60%] md:px-0 mx-auto">
{/* Changed the width for small devices */}
<ContactSection />
</div>
</div>
<Footer />
</div>
)
);
}

45 changes: 26 additions & 19 deletions app/learn-more/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className="">
<Navbar1 />
<div className="min-h-screen bg-grey-500 bg-texture">
<div className="container mx-auto px-32 py-16">
<motion.h1
<div className="container mx-auto px-4 md:px-32 pb-16 pt-8 md:pt-16">
{/* Changed the x-padding for small devices + reduced y-padding-top for small devices */}
<motion.h1
className="text-5xl font-bold text-center mb-8 text-white-800 dark:text-grey-300"
initial={{ y: -20, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
Expand All @@ -24,25 +25,31 @@ export default function LearnMorePage() {

<TabContainer />

<motion.div
<motion.div
className="text-center bg-white/80 dark:bg-gray-800/80 backdrop-blur-sm rounded-lg p-8 shadow-lg mt-16"
initial={{ y: 20, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{ delay: 0.4, duration: 0.5 }}
>
<h2 className="text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300">Want to Contribute ?</h2>
<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>
<h2 className="text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300">
Want to Contribute ?
</h2>
<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>
<ShinyButton>
<Link
href='https://github.com/yashksaini-coder/Leetcode-Journal'
target='_blank'
>Contribute Now</Link>
</ShinyButton>
href="https://github.com/yashksaini-coder/Leetcode-Journal"
target="_blank"
>
Contribute Now
</Link>
</ShinyButton>
</motion.div>
</div>
</div>
<Footer/>
<Footer />
</div>
)
);
}

4 changes: 2 additions & 2 deletions components/ui/shiny-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>(
{...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
)}
>
<span
Expand All @@ -65,7 +65,7 @@ const ShinyButton = React.forwardRef<HTMLButtonElement, ShinyButtonProps>(
></span>
</motion.button>
);
},
}
);

ShinyButton.displayName = "ShinyButton";
Expand Down
2 changes: 2 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading