Skip to content

Commit

Permalink
Refactor enterprise features and footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
vvu060 committed Jan 18, 2024
1 parent 6d8d378 commit 9437565
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
7 changes: 1 addition & 6 deletions src/components/enterprise/MoreEnterpriseFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ const MoreEnterpriseFeatures = (): JSX.Element => {
</Heading>
</div>

<div
className="flex items-start justify-start gap-SPACE_04 flex-wrap p-SPACE_04 overflow-x-auto h-full max-w-screen-md sm:pl-SPACE_10 sm:py-SPACE_10"
style={{
borderLeft: "1px solid var(--ifm-color-brand-light-300)",
}}
>
<div className="border-l border-solid border-tailCall-border-light-300 flex items-start justify-start gap-SPACE_04 flex-wrap p-SPACE_04 overflow-x-auto h-full max-w-screen-md sm:pl-SPACE_10 sm:py-SPACE_10">
{additionalEnterpriseFeatures.map((feature) => (
<div
className="min-w-[150px] border border-solid border-tailCall-border-light-300 flex items-center p-SPACE_02 sm:px-SPACE_04 sm:py-SPACE_03 rounded w-fit space-x-SPACE_02 sm:space-x-SPACE_04"
Expand Down
15 changes: 3 additions & 12 deletions src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,19 @@ const Footer = (): JSX.Element => {
<div className="text-content-tiny sm:text-title-small space-x-SPACE_06 text-tailCall-light-500 z-10">
<Link
href={pageLinks.docs}
className="text-tailCall-light-500 hover:text-tailCall-light-300"
style={{
textDecorationLine: "none",
}}
className="text-tailCall-light-500 hover:text-tailCall-light-300 hover:no-underline"
>
Documentation
</Link>
<Link
href={pageLinks.about}
className="text-tailCall-light-500 hover:text-tailCall-light-300"
style={{
textDecorationLine: "none",
}}
className="text-tailCall-light-500 hover:text-tailCall-light-300 hover:no-underline"
>
About
</Link>
<Link
href={tailCallBlogUrl}
className="text-tailCall-light-500 hover:text-tailCall-light-300"
style={{
textDecorationLine: "none",
}}
className="text-tailCall-light-500 hover:text-tailCall-light-300 hover:no-underline"
>
Blog
</Link>
Expand Down

0 comments on commit 9437565

Please sign in to comment.