Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
2 changes: 1 addition & 1 deletion landing-page/src/Pages/FaqPage/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function FAQ() {
transition={{ duration: 0.8 }}
className="text-center mb-16"
>
<h2 className="text-4xl md:text-5xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-yellow-500 to-green-600 dark:from-yellow-400 dark:to-green-500">
<h2 className="text-4xl md:text-5xl font-bold py-2 mb-2 bg-clip-text text-transparent bg-gradient-to-r from-yellow-500 to-green-600 dark:from-yellow-400 dark:to-green-500">
Comment thread
Aditya30ag marked this conversation as resolved.
Outdated
Frequently Asked Questions
</h2>
<p className="max-w-2xl mx-auto text-lg text-gray-600 dark:text-gray-300">
Expand Down
2 changes: 1 addition & 1 deletion landing-page/src/Pages/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FaDiscord } from 'react-icons/fa' // Import Discord icon from React Ic

const Footer: React.FC = () => {
return (
<footer className="relative bg-black text-white py-8 overflow-hidden">
<footer className="relative bg-white dark:bg-black text-white py-8 overflow-hidden border-t border-black dark:border-white transition-colors duration-300">
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
<div className="relative container mx-auto px-6">
<div className="flex justify-between items-center">
{/* Left-aligned PictoPy text */}
Expand Down
2 changes: 1 addition & 1 deletion landing-page/src/Pages/Landing page/Home1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ShuffleHero = () => {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1, delay: 0.2 }}
className="text-4xl md:text-6xl font-bold tracking-tight bg-gradient-to-r from-yellow-500 to-green-500 text-transparent bg-clip-text"
className="text-4xl md:text-6xl font-bold tracking-tight bg-gradient-to-r from-yellow-500 to-green-500 text-transparent bg-clip-text py-2"
>
PictoPy
</motion.h3>
Expand Down
4 changes: 2 additions & 2 deletions landing-page/src/Pages/pictopy-landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const PictopyLanding: FC = () => {
};

return (
<section className="w-full py-12 md:py-24 bg-white dark:bg-black transition-colors duration-300 relative overflow-hidden">
<section className="w-full py-12 md:py-14 bg-white dark:bg-black transition-colors duration-300 relative overflow-hidden">
{/* Background Animated SVG */}
<div className="absolute inset-0 z-0">
<svg
Expand Down Expand Up @@ -56,7 +56,7 @@ const PictopyLanding: FC = () => {
alt="Pictopy Logo"
className="h-16 w-16 object-contain"
/>
<h1 className="text-4xl md:text-6xl font-bold tracking-tight text-transparent bg-clip-text bg-gradient-to-r from-yellow-500 to-green-500 transition-all duration-300">
<h1 className="text-4xl md:text-6xl font-bold tracking-tight text-transparent bg-clip-text bg-gradient-to-r from-yellow-500 to-green-500 transition-all duration-300 py-2">
PictoPy
</h1>
</div>
Expand Down