Skip to content

Commit

Permalink
update the get started url and fix the scroll (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
sweta1308 committed Jul 1, 2024
1 parent 473319d commit 0d4e3b2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/NavbarDev/NavbarStrip.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const NavbarStrip = () => {
<span className="lg:relative">
<Link
className="border-1 border-[#D3ECF7] px-4 py-2 lg:text-[24px] leading-[31.2px] hover:text-[#D3ECF7]"
href="https://cloud.getcollate.io/"
href="https://cloud.getcollate.io/signup"
target="_blank"
>
Get Started
Expand Down
4 changes: 2 additions & 2 deletions src/components/Testimonials/Testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ const Testimonials = () => {
<div className="custom-container relative z-[12]">
<div className="flex justify-between">
<Image
className="hidden mt-5 lg:block"
className="hidden lg:block"
height={20}
width={140}
src="/assets/header/left-box.svg"
alt="left-box-svg"
loading="lazy"
/>
<div className="mt-32 mx-auto px-4 md:px-16 lg:px-0">
<div className="mt-28 mx-auto px-4 md:px-16 lg:px-0">
<h3 className="text-[#292929] font-medium text-center text-[36px] lg:text-[44px]">
Trusted <span className="text-[#7147E8]">Across Industries</span>
</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TryOpenMetadata/TryOpenMetadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Link from "next/link";
const TryOpenMetadata = () => {
return (
<div className="shadow-bg mt-20" id="try-openmetadata">
<div className="custom-container pt-16 px-4 md:px-16">
<div className="custom-container py-16 px-4 md:px-16">
<h3 className="text-[#292929] font-medium text-center text-[36px] lg:text-[44px]">
Different ways to try out{" "}
<span className="text-[#7147E8]">OpenMetadata</span>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/development.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Head from "next/head";
const Development = () => {
const handleTryOpenMetadataClick = () => {
const element = document.querySelector("#try-openmetadata");
element?.scrollIntoView({ behavior: "smooth", block: "center" })
element?.scrollIntoView({ behavior: "smooth", block: "end" })
}

return (
Expand Down
6 changes: 6 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ p{
@apply bg-gradient-to-b from-[#F1EDFD] to-white
}

@media (max-width: 767px) {
.slick-slider .slick-dots li {
margin: 0 0.2rem;
}
}

@media (min-width: 576px) {
.container-sm,
.container {
Expand Down

0 comments on commit 0d4e3b2

Please sign in to comment.