Skip to content

Commit c9d5474

Browse files
Refactor sections into subfolder
1 parent 4107d43 commit c9d5474

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

apps/web/app/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Navbar } from "@/components/navbar";
2-
import { SquircleDemoSection } from "./SquircleDemoSection";
3-
import { UsageSection } from "./UsageSection";
4-
import { ExamplesSection } from "./ExamplesSection";
5-
import { FeaturesSection } from "./FeaturesSection";
6-
import { HowItWorksSection } from "./HowItWorksSection";
7-
import { LicenseSection } from "./LicenseSection";
8-
import { LinksSection } from "./LinksSection";
2+
import { SquircleDemoSection } from "./sections/SquircleDemoSection";
3+
import { UsageSection } from "./sections/UsageSection";
4+
import { ExamplesSection } from "./sections/ExamplesSection";
5+
import { FeaturesSection } from "./sections/FeaturesSection";
6+
import { HowItWorksSection } from "./sections/HowItWorksSection";
7+
import { LicenseSection } from "./sections/LicenseSection";
8+
import { LinksSection } from "./sections/LinksSection";
99

1010
export default function Page() {
1111
return (
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

apps/web/app/SquircleDemoSection.tsx renamed to apps/web/app/sections/SquircleDemoSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const SquircleDemoSection = () => {
2525
</Squircle>
2626
<br />
2727
for{" "}
28-
<span className="relative before:absolute before:-inset-x-1 before:h-1 before:-bottom-1 before:-rotate-2 before:bg-black before:-z-10">
28+
<span className="relative before:absolute before:-inset-x-1 before:h-1 before:-bottom-1 before:-rotate-2 before:bg-foreground before:-z-10">
2929
your
3030
</span>{" "}
3131
Frontend
@@ -35,7 +35,7 @@ export const SquircleDemoSection = () => {
3535
Use{" "}
3636
<Squircle
3737
as="code"
38-
className="bg-gray-800 text-white py-1 pl-2 pr-2"
38+
className="bg-foreground text-white py-1 pl-2 pr-2"
3939
cornerRadius={10}
4040
cornerSmoothing={1}
4141
>
File renamed without changes.

0 commit comments

Comments
 (0)