minor design changes
This commit is contained in:
parent
abd8179815
commit
5b1400e14b
5 changed files with 99 additions and 96 deletions
|
@ -19,7 +19,7 @@ const About = () => {
|
|||
<div className="pb-6">
|
||||
<h2 className="text-3xl md:text-5xl font-bold">
|
||||
About{" "}
|
||||
<span className="bg-gradient-to-b from-green-200 to-primary text-transparent bg-clip-text">
|
||||
<span className="bg-gradient-to-b from-green-300 to-primary text-transparent bg-clip-text">
|
||||
SVRJS!
|
||||
</span>
|
||||
</h2>
|
||||
|
|
|
@ -7,7 +7,7 @@ const HowItWorks = () => {
|
|||
<section className="container text-center py-12 sm:py-24">
|
||||
<h2 className="text-3xl md:text-5xl font-bold">
|
||||
Accelerate your{" "}
|
||||
<span className="bg-gradient-to-b from-green-200 to-primary text-transparent bg-clip-text">
|
||||
<span className="bg-gradient-to-b from-green-300 to-primary text-transparent bg-clip-text">
|
||||
development
|
||||
</span>
|
||||
</h2>
|
||||
|
|
|
@ -38,7 +38,7 @@ const Navbar = () => {
|
|||
href={href}
|
||||
target={target}
|
||||
className={`text-[17px] tracking-tight ${
|
||||
pathname == href ? "bg-accent/40" : ""
|
||||
pathname == href ? "bg-muted-foreground/20" : ""
|
||||
} ${buttonVariants({
|
||||
variant: "ghost",
|
||||
})}`}
|
||||
|
|
|
@ -15,8 +15,11 @@ const Partners = () => {
|
|||
id="partners"
|
||||
className="wrapper container py-24 md:py-28 gap-4 flex flex-col"
|
||||
>
|
||||
<h2 className="text-3xl md:text-5xl font-bold mb-6 text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400">
|
||||
SVRJS in action
|
||||
<h2 className="text-3xl md:text-5xl font-bold text-start">
|
||||
<span className="bg-gradient-to-b from-green-300 to-primary text-transparent bg-clip-text">
|
||||
SVRJS
|
||||
</span>{" "}
|
||||
in action
|
||||
</h2>
|
||||
<div className="w-full flex-start flex-row">
|
||||
<div className="flex max-md:flex-col items-center justify-start gap-4">
|
||||
|
|
|
@ -81,7 +81,7 @@ const Testimonials = () => {
|
|||
</div>
|
||||
<h1 className="text-3xl md:text-5xl font-bold text-center">
|
||||
Hear it from{" "}
|
||||
<span className="bg-gradient-to-b from-green-200 to-primary text-transparent bg-clip-text">
|
||||
<span className="bg-gradient-to-b from-green-300 to-primary text-transparent bg-clip-text">
|
||||
our users
|
||||
</span>
|
||||
</h1>
|
||||
|
|
Loading…
Reference in a new issue