Skip to content

Commit

Permalink
more more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tacheraSasi committed Dec 2, 2024
1 parent edbd931 commit 8360b86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions website/components/cta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ export default function CTA() {
return (
<section id="get-started" className="container py-24 sm:py-32">
<motion.div
className="bg-taupe-900 rounded-lg px-6 py-16 sm:p-16 text-center"
className="bg-neutral-900 rounded-lg px-6 py-16 sm:p-16 text-center"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
>
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
Ready to dive into VintLang?
</h2>
<p className="mt-6 text-lg leading-8 text-taupe-700 ">
<p className="mt-6 text-lg leading-8 text-neutral-700 ">
Start your journey with VintLang today and experience the power of modern programming made simple.
</p>
<div className="mt-10 flex items-center flex-wrap justify-center gap-x-6 gap-y-3">
<Button size="lg" className="bg-taupe-800 text-white hover:bg-taupe-600 ">
<Button size="lg" className="bg-neutral-800 text-white hover:bg-neutral-600 ">
<Link href="/docs">Get Started</Link>
</Button>
<Button size="lg" variant="outline" className=" border-taupe-700 border-white ">
<Button size="lg" variant="outline" className=" border-neutral-700 border-white ">
<Link href="/docs">Learn More</Link>
</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion website/components/docs/site-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ModeToggle } from "@/components/docs/mode-toggle"

export function SiteHeader() {
return (
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<header className="sticky top-0 z-50 w-full bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<div className="container flex h-14 items-center">
{/* <MainNav /> */}
<MobileNav />
Expand Down

0 comments on commit 8360b86

Please sign in to comment.