Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/MyriadFlow/studio
Browse files Browse the repository at this point in the history
  • Loading branch information
surajhub255 committed Oct 10, 2024
2 parents ccd7e64 + b641f2f commit ec89c8a
Show file tree
Hide file tree
Showing 3 changed files with 448 additions and 351 deletions.
17 changes: 9 additions & 8 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,28 @@ import type { Metadata } from 'next'
import { Bai_Jamjuree as FontSans } from 'next/font/google'
import './globals.css'
import 'react-toastify/dist/ReactToastify.css'

import { cn } from '@/lib/utils'

import { headers } from 'next/headers'

import { cookieToInitialState } from 'wagmi'
import Providers from '@/lib/providers'
import { config } from '@/lib/wagmi'
import AppKitProvider from '@/lib/providers'


const fontSans = FontSans({
subsets: ['latin'],
weight: ['400', '700'],
variable: '--font-sans',
})
export const metadata: Metadata = {
title: 'Studio | MyriadFlow',
description: 'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
description:
'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
openGraph: {
type: 'website',
url: 'https://studio.myriadflow.com',
title: 'Studio | MyriadFlow',
description: 'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
description:
'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
images: [
{
url: '/metaimg.png',
Expand All @@ -39,7 +37,8 @@ export const metadata: Metadata = {
card: 'summary_large_image',
site: '@MyriadFlow',
title: 'Studio | MyriadFlow',
description: 'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
description:
'Bring your brand to the future! MyriadFlow Studio empowers you to launch and manage brands, collections, and phygital NFTs with WebXR experiences – all without coding.',
images: [
{
url: '/metaimg.png',
Expand All @@ -66,7 +65,9 @@ export default function RootLayout({
fontSans.variable
)}
>
<AppKitProvider initialState={initialState}>{children}</AppKitProvider >
<AppKitProvider initialState={initialState}>
{children}
</AppKitProvider>
</body>
</Providers>
</html>
Expand Down
Loading

0 comments on commit ec89c8a

Please sign in to comment.