Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the get started url and fix the scroll #149

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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