-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
169 changed files
with
2,409 additions
and
1,191 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+49.8 KB
apps/claim-vesting/public/fonts/studiofeixensans-semibolditalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+47.9 KB
apps/claim-vesting/public/fonts/studiofeixensans-ultralightitalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+50.1 KB
apps/create-vesting/public/fonts/studiofeixensans-regularitalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+49.8 KB
apps/create-vesting/public/fonts/studiofeixensans-semibolditalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+47.9 KB
apps/create-vesting/public/fonts/studiofeixensans-ultralightitalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
"use client"; | ||
|
||
import "#/global.css"; | ||
import "@bleu/cow-hooks-ui/global.css"; | ||
import Head from "next/head"; | ||
import type * as React from "react"; | ||
import { IFrameContextProvider } from "@bleu/cow-hooks-ui"; | ||
import { TokenAmountTypeProvider } from "#/context/TokenAmountType"; | ||
|
||
export default function Layout({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<html lang="en" className="h-full"> | ||
<Head> | ||
<link rel="manifest" href="/manifest.json" /> | ||
</Head> | ||
<body className="flex flex-col h-full font-sans font-normal"> | ||
{children} | ||
</body> | ||
<IFrameContextProvider> | ||
<TokenAmountTypeProvider> | ||
<body className="flex flex-col h-full font-sans font-normal"> | ||
{children} | ||
</body> | ||
</TokenAmountTypeProvider> | ||
</IFrameContextProvider> | ||
</html> | ||
); | ||
} |
Oops, something went wrong.