-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from khushijohri2001/highlight/announcement-s…
…ection Feat: Added Announcement Section at the Top of main Navbar
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from "react"; | ||
import { cn } from "@/lib/utils"; | ||
import { Button } from "../ui/button"; | ||
|
||
type Props = {}; | ||
|
||
export default function AnnouncementSection({}: Props) { | ||
return ( | ||
<footer className="dark:bg-gray-100 bg-[#161D29] py-4"> | ||
<div className="container mx-auto px-4"> | ||
<div className="flex items-center justify-center text-center text-sm md:text-lg font-bold text-white dark:text-gray-700"> | ||
LEARN AND BUILD EVERYTHING FOR <span className="text-red-400 ml-1 mr-3"> FREE </span> 🚀 | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} |