Skip to content

Commit

Permalink
Merge pull request #481 from saidam90/terms-conditions-redesign-2
Browse files Browse the repository at this point in the history
Terms conditions redesign 2
  • Loading branch information
dcts authored Jul 16, 2024
2 parents bc68013 + 0a5dc6c commit 571c3ec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 14 additions & 1 deletion src/app/terms/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
export default function MdxLayout({ children }: { children: React.ReactNode }) {
// Create any shared layout or styles here
return <div className="max-w-screen-lg mx-auto p-4">{children}</div>;
return (
<div className="px-16">
<div className="max-w-screen-md mx-auto py-28">
<h1
className="!m-0 !mb-8 text-5xl text-md bg-gradient-to-r
from-dexter-gradient-blue to-dexter-gradient-green to-50% bg-clip-text
text-transparent font-normal"
>
Terms of Service
</h1>
<div className="text-xs">{children}</div>
</div>
</div>
);
}
2 changes: 0 additions & 2 deletions src/app/terms/page.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Terms of Service

Last updated: December 8, 2023

## Introduction
Expand Down

0 comments on commit 571c3ec

Please sign in to comment.