Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
103sbavert committed Nov 29, 2024
1 parent 4ce49a0 commit d8738be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ export default function Footer() {
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
{/* Column 1: Logo and Tagline */}
<div>
<a href="/" className="flex items-center gap-3 mb-4">
<Link href="/" className="flex items-center gap-3 mb-4">
<div className="bg-white text-black p-3 rounded-full font-bold text-lg">
FQ
</div>
<span className="text-xl font-semibold">FlockIQ</span>
</a>
</Link>
<p className="text-gray-400">
Making forms smarter, insights deeper. Join us in transforming surveys for the modern age.
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Header() {
return (
<nav className="sticky top-0 bg-black border-b border-gray-700 py-4 z-50">
<div className="container mx-auto flex justify-between items-center px-4">
<a href="/" className="flex items-center gap-2 text-white no-underline">
<Link href="/" className="flex items-center gap-2 text-white no-underline">
<div className="bg-white text-black w-8 h-8 flex items-center justify-center rounded-lg font-bold">
FQ
</div>
Expand All @@ -35,7 +35,7 @@ export default function Header() {
>
FlockIQ
</span>
</a>
</Link>
<div className="flex gap-4 items-center">
<a href="#features" className="text-gray-400 hover:text-white transition">
Features
Expand Down
2 changes: 1 addition & 1 deletion src/components/userfeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function UserFeedback() {
return (
<section className="user-feedback">
<div className="container mx-auto text-center">
<h2>We'd Love Your Feedback</h2>
<h2>We&apos;d Love Your Feedback</h2>
<p className="text-lg mb-12 text-gray-400">Tell us about your experience with FlockIQ and how we can improve.</p>

<div className="feedback-form">
Expand Down

0 comments on commit d8738be

Please sign in to comment.