Skip to content

Commit

Permalink
fixed the header link to get started
Browse files Browse the repository at this point in the history
  • Loading branch information
tacheraSasi committed Dec 1, 2024
1 parent 2a4fbda commit 81f1501
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/components/Feature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ interface FeatureProps {
const Feature: React.FC<FeatureProps> = ({ feature, index }) => {
return (
<motion.div
className="rounded-lg bg-taupe-900 p-6 text-center md:text-left flex flex-col md:flex-row items-center shadow-lg hover:shadow-xl transition-shadow duration-300 cursor-pointer"
className="rounded-lg bg-neutral-900 p-6 text-center md:text-left flex flex-col md:flex-row items-center shadow-lg hover:shadow-xl transition-shadow duration-300 cursor-pointer"
initial={{ opacity: 0, y: 30 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: index * 0.1 }}
>
<div className="flex items-center px-1 justify-center h-16 w-16 rounded-full bg-taupe-100 text-taupe-900 dark:bg-taupe-800 dark:text-taupe-100 shadow-md">
<div className="flex items-center px-1 justify-center h-16 w-16 rounded-full bg-neutral-100 text-neutral-900 dark:bg-neutral-800 dark:text-neutral-100 shadow-md">
<feature.icon className="w-8 h-8" aria-label={`${feature.name} icon`} />
</div>
<div className="mt-4 md:mt-0 md:ml-6 text-center md:text-left">
Expand Down
2 changes: 1 addition & 1 deletion website/components/cta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function CTA() {
<p className="mt-6 text-lg leading-8 text-taupe-700 ">
Start your journey with VintLang today and experience the power of Swahili-inspired programming.
</p>
<div className="mt-10 flex items-center justify-center gap-x-6">
<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 ">
Get Started
</Button>
Expand Down
2 changes: 1 addition & 1 deletion website/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Header() {
<nav className="flex items-center space-x-6 text-sm font-medium">
<a className="transition-colors hover:text-foreground/80 text-foreground/60" href="#features">Features</a>
<a className="transition-colors hover:text-foreground/80 text-foreground/60" href="#code-example">Code Example</a>
<a className="transition-colors hover:text-foreground/80 text-foreground/60" href="#get-started">Get Started</a>
<a className="transition-colors hover:text-foreground/80 text-foreground/60" href="/docs">Get Started</a>
</nav>
</div>
<div className="flex flex-1 items-center justify-between space-x-2 md:justify-end">
Expand Down

0 comments on commit 81f1501

Please sign in to comment.