Skip to content

Commit

Permalink
chore: remove banner
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushsharma82 committed Dec 5, 2024
1 parent e3a2d09 commit 10336a5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pages/_document.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
import { Head, Html, Main, NextScript } from "next/document";

const promo_banner = [
"Cyber Monday Madness Starts Now!",
"Enjoy Up to 25% Off!",
"Limited Time Offer till 4th December '24."
];
const promo_banner = [];

export default function Document() {
return (
<Html lang="en">
<Head />
<body className="antialiased">
{
promo_banner && (
promo_banner && promo_banner.length > 0 && (
<div className="relative flex overflow-x-hidden text-zinc-200 font-semibold text-sm uppercase bg-blue-600">
<div className="py-2 animate-marquee whitespace-nowrap">
{
Expand Down

0 comments on commit 10336a5

Please sign in to comment.