From 2a664e0efd9b9776885c2a6fdbc78d68cb387d13 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Thu, 7 Nov 2024 06:30:58 +0100 Subject: [PATCH] fix: replace top-level
tags in section with
tags --- components/About.jsx | 4 +- components/FAQ.jsx | 4 +- components/Features.jsx | 4 +- components/Footer.jsx | 152 +++++++++++++++++++--------------------- components/Hero.jsx | 4 +- 5 files changed, 82 insertions(+), 86 deletions(-) diff --git a/components/About.jsx b/components/About.jsx index 581d364..0ee4c26 100644 --- a/components/About.jsx +++ b/components/About.jsx @@ -2,7 +2,7 @@ import Icon from "@/components/Icon"; function About() { return ( -
+
-
+ ); } diff --git a/components/FAQ.jsx b/components/FAQ.jsx index 3ec8bf6..a84f073 100644 --- a/components/FAQ.jsx +++ b/components/FAQ.jsx @@ -9,7 +9,7 @@ function FAQ() { const ref = useRef({}); return ( -
+

Frequently Asked Questions

@@ -51,7 +51,7 @@ function FAQ() {
))} - + ); } diff --git a/components/Features.jsx b/components/Features.jsx index 4ab1478..c255a60 100644 --- a/components/Features.jsx +++ b/components/Features.jsx @@ -2,7 +2,7 @@ import { features } from "@/constants"; function Features() { return ( -
+

Experience Effortless Email

@@ -23,7 +23,7 @@ function Features() {
))} - + ); } diff --git a/components/Footer.jsx b/components/Footer.jsx index 402a334..38fdebd 100644 --- a/components/Footer.jsx +++ b/components/Footer.jsx @@ -7,87 +7,83 @@ import Logo from "@/components/Logo"; function Footer() { const currentYear = new Date().getFullYear(); return ( - <> - ); } diff --git a/components/Hero.jsx b/components/Hero.jsx index af8b4b2..a81afce 100644 --- a/components/Hero.jsx +++ b/components/Hero.jsx @@ -3,7 +3,7 @@ import Link from "next/link"; function Hero() { return ( -
+

Revolution­ize your inbox{" "} @@ -46,7 +46,7 @@ function Hero() { />

- + ); }