Skip to content

Commit

Permalink
logo
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeyens committed Oct 14, 2024
1 parent 61b352a commit 0571f2e
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 215 deletions.
2 changes: 1 addition & 1 deletion apps/www/content/docs/components/draggable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Copy and paste the following code into your project.
</Step>

<ComponentSource name="draggable" />
<ComponentSource name="with-draggables" />
<ComponentSource src="src/registry/default/plate-ui/with-draggables.tsx" />

<Step>

Expand Down
14 changes: 7 additions & 7 deletions apps/www/content/docs/components/emoji-dropdown-menu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ Copy and paste the following code into your project.
</Step>

<ComponentSource name="emoji-dropdown-menu" />
<ComponentSource name="emoji-icons" />
<ComponentSource name="emoji-picker" />
<ComponentSource name="emoji-picker-content" />
<ComponentSource name="emoji-picker-navigation" />
<ComponentSource name="emoji-picker-preview" />
<ComponentSource name="emoji-picker-search-and-clear" />
<ComponentSource name="emoji-picker-search-bar" />
<ComponentSource src="src/registry/default/plate-ui/emoji-icons.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker-content.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker-navigation.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker-preview.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker-search-and-clear.tsx" />
<ComponentSource src="src/registry/default/plate-ui/emoji-picker-search-bar.tsx" />

<Step>

Expand Down
Binary file removed apps/www/public/android-chrome-192x192.png
Binary file not shown.
Binary file removed apps/www/public/android-chrome-512x512.png
Binary file not shown.
Binary file modified apps/www/public/apple-touch-icon.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed apps/www/public/favicon-16x16.png
Binary file not shown.
Binary file removed apps/www/public/favicon-32x32.png
Binary file not shown.
Binary file added apps/www/public/favicon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/www/public/favicon.ico
100644 → 100755
Binary file not shown.
6 changes: 6 additions & 0 deletions apps/www/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion apps/www/public/logo.svg

This file was deleted.

67 changes: 0 additions & 67 deletions apps/www/public/safari-pinned-tab.svg

This file was deleted.

50 changes: 0 additions & 50 deletions apps/www/public/schema.json

This file was deleted.

36 changes: 19 additions & 17 deletions apps/www/public/site.webmanifest
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#000000",
"background_color": "#000000",
"display": "standalone"
}
Binary file added apps/www/public/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/www/public/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions apps/www/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import type { Metadata, Viewport } from 'next';

import { cn } from '@udecode/cn';

import { GA } from '@/components/analytics/ga';
import { Providers } from '@/components/context/providers';
import { SiteFooter } from '@/components/site-footer';
import { SiteHeader } from '@/components/site-header';
Expand All @@ -13,7 +14,6 @@ import { siteConfig } from '@/config/site';
import { fontSans } from '@/lib/fonts';

import '@/styles/globals.css';
import { GA } from '@/components/analytics/ga';

export const metadata: Metadata = {
authors: [
Expand All @@ -27,7 +27,7 @@ export const metadata: Metadata = {
icons: {
apple: '/apple-touch-icon.png',
icon: '/favicon.ico',
shortcut: '/favicon-16x16.png',
shortcut: '/favicon-48x48.png',
},
keywords: [
'Plate',
Expand Down
Loading

0 comments on commit 0571f2e

Please sign in to comment.