Skip to content

Commit

Permalink
Merge pull request #1 from pimlicolabs/refactor-1
Browse files Browse the repository at this point in the history
wip
  • Loading branch information
pavlovdog authored Jan 5, 2025
2 parents f00434e + 2f40028 commit d7e0eae
Show file tree
Hide file tree
Showing 9 changed files with 259 additions and 5,977 deletions.
5,334 changes: 0 additions & 5,334 deletions package-lock.json

This file was deleted.

229 changes: 0 additions & 229 deletions src/app/add-stake/page.tsx

This file was deleted.

31 changes: 7 additions & 24 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import NavBar from "@/components/navbar";
import RainbowProvider from "@/utils/rainbow-provider";
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
weight: "100 900",
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff",
variable: "--font-geist-mono",
weight: "100 900",
});
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";

export const metadata: Metadata = {
title: "Pimlico MagicSpend++",
description: "Allowing your users to instantly use their balances on any chain. In Beta.",
title: "Magic Spend",
description: "Magic Spend by Pimlico",
};

export default function RootLayout({
Expand All @@ -29,13 +16,9 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<RainbowProvider>
<NavBar />
{children}
</RainbowProvider>
<body>
<NavBar />
{children}
<ToastContainer />
</body>
</html>
Expand Down
Loading

0 comments on commit d7e0eae

Please sign in to comment.