Skip to content

Commit

Permalink
Merge pull request #53 from sitcon-tw/feature/traffic_page
Browse files Browse the repository at this point in the history
Feature/traffic page
  • Loading branch information
pizza6inch authored Jan 2, 2025
2 parents b1c210f + 3cc3375 commit 81029a8
Show file tree
Hide file tree
Showing 2 changed files with 732 additions and 1 deletion.
11 changes: 11 additions & 0 deletions app/(website)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { ReactNode } from "react";

export default function Layout({ children }: { children: ReactNode }) {
return (
<div className="flex w-full justify-center bg-background text-foreground">
<div className="flex w-full max-w-[90%] justify-center py-20 md:max-w-[80%]">
{children}
</div>
</div>
);
}
Loading

0 comments on commit 81029a8

Please sign in to comment.