Skip to content

Commit

Permalink
chore: folder cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
xn1cklas committed Sep 7, 2024
1 parent 014119a commit 30235c5
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PropsWithChildren } from "react";
import LandingLayout from "@/components/Landing/LandingLayout";
import LandingLayout from "@/components/LandingLayout";
import type { Metadata } from "next";
import { twMerge } from "tailwind-merge";
import localFont from "next/font/local";
Expand Down
6 changes: 5 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use client";

import { Section } from "@/components/Landing/Section";
import { Section } from "@/components/Section";
import { Pricing } from "@/components/Pricing";

// import GetStartedButton from "@/components/Auth/GetStartedButton";
// import Button from "@/components/ui/atoms/button";
Expand Down Expand Up @@ -37,6 +38,9 @@ export default function Page() {
</div>
</div>
</Section>
<Section>
<Pricing />
</Section>
</div>
);
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
"use client";

import { Section } from "@/components/Landing/Section";
import { TopbarNavigation } from "@/components/Landing/TopbarNavigation";
import { BrandingMenu } from "@/components/Layout/Public/BrandingMenu";
import Footer from "@/components/Organization/Footer";
// import { motion } from "framer-motion";
import { Section } from "@/components/Section";
import { TopbarNavigation } from "@/components/TopbarNavigation";
import { BrandingMenu } from "@/components/BrandingMenu";
import Footer from "@/components/Footer";
import Link from "next/link";
import { usePathname } from "next/navigation";
import Button from "@/components/ui/atoms/button";
import { PropsWithChildren, useEffect } from "react";
import { PropsWithChildren } from "react";

export default function Layout({ children }: PropsWithChildren) {
const pathname = usePathname();

useEffect(() => {
window.scroll(0, 0);
}, [pathname]);

return (
<div className="dark:bg-[#0B0C0E] flex w-full flex-col items-center bg-white">
<Section
Expand Down
7 changes: 7 additions & 0 deletions src/components/Pricing.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export function Pricing() {
return (
<div>
<h1>Pricing</h1>
</div>
);
}
File renamed without changes.
File renamed without changes.

0 comments on commit 30235c5

Please sign in to comment.