Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added apps/web-ui/public/android-chrome-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/web-ui/public/android-chrome-512x512.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/web-ui/public/apple-touch-icon.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/web-ui/public/favicon-16x16.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/web-ui/public/favicon-32x32.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/web-ui/public/favicon.ico
Binary file not shown.
Binary file added apps/web-ui/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions apps/web-ui/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"Rustforms - Simple Form Backend","short_name":"Rustforms","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#000000","background_color":"#000000","display":"standalone","description":"Create forms and receive submissions via email"}
7 changes: 4 additions & 3 deletions apps/web-ui/src/app/dashboard/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import type React from "react"

import { useState } from "react"
import Link from "next/link"
import Image from "next/image"
import { Button } from "@/components/ui/button"
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@/components/ui/dropdown-menu"
import { Mail, User, LogOut, FileText, Users, CreditCard, Settings, Building } from "lucide-react"
import { User, LogOut, FileText, Users, CreditCard, Settings, Building } from "lucide-react"
import { Badge } from "@/components/ui/badge"
import { FEATURE_FLAGS } from "@/lib/feature-flags"

Expand All @@ -28,8 +29,8 @@ export default function DashboardLayout({
<header className="border-b border-gray-800 bg-black">
<div className="container mx-auto px-4 py-4 flex items-center justify-between">
<Link href="/dashboard" className="flex items-center space-x-2">
<div className="w-8 h-8 bg-white rounded-lg flex items-center justify-center">
<Mail className="w-4 h-4 text-black" />
<div className="w-8 h-8 rounded-lg flex items-center justify-center">
<Image src="/logo.png" alt="Rustforms Logo" width={32} height={32} className="object-contain" />
</div>
<span className="text-xl font-bold text-white">Rustforms</span>
</Link>
Expand Down
16 changes: 15 additions & 1 deletion apps/web-ui/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,21 @@ const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
title: "Rustforms - Simple Form Backend",
description: "Create forms and receive submissions via email",
generator: 'v0.dev'
icons: {
icon: [
{ url: '/favicon-16x16.png', sizes: '16x16', type: 'image/png' },
{ url: '/favicon-32x32.png', sizes: '32x32', type: 'image/png' },
{ url: '/favicon.ico', sizes: 'any' }
],
apple: [
{ url: '/apple-touch-icon.png', sizes: '180x180', type: 'image/png' }
],
other: [
{ url: '/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' },
{ url: '/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' }
]
},
manifest: '/site.webmanifest'
}

export default function RootLayout({
Expand Down
11 changes: 6 additions & 5 deletions apps/web-ui/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import Link from "next/link"
import Image from "next/image"
import { Button } from "@/components/ui/button"
import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Badge } from "@/components/ui/badge"
import { ArrowRight, Mail, Shield, Zap, Github, Globe } from "lucide-react"
import { ArrowRight, Shield, Zap, Github, Globe } from "lucide-react"

export default function HomePage() {
return (
Expand All @@ -11,8 +12,8 @@ export default function HomePage() {
<header className="border-b border-gray-800">
<div className="container mx-auto px-4 py-4 flex items-center justify-between">
<div className="flex items-center space-x-2">
<div className="w-8 h-8 bg-white rounded-lg flex items-center justify-center">
<Mail className="w-4 h-4 text-black" />
<div className="w-8 h-8 rounded-lg flex items-center justify-center">
<Image src="/logo.png" alt="Rustforms Logo" width={32} height={32} className="object-contain" />
</div>
<span className="text-xl font-bold text-white">Rustforms</span>
</div>
Expand Down Expand Up @@ -147,8 +148,8 @@ export default function HomePage() {
<footer className="border-t border-gray-800 py-8 px-4">
<div className="container mx-auto">
<div className="flex items-center justify-center space-x-2 mb-4">
<div className="w-6 h-6 bg-white rounded flex items-center justify-center">
<Mail className="w-3 h-3 text-black" />
<div className="w-6 h-6 rounded flex items-center justify-center">
<Image src="/logo.png" alt="Rustforms Logo" width={24} height={24} className="object-contain" />
</div>
<span className="font-semibold text-white">Rustforms</span>
</div>
Expand Down
Binary file added logo/android-chrome-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 logo/android-chrome-512x512.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 logo/apple-touch-icon.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 logo/favicon-16x16.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 logo/favicon-32x32.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 logo/favicon.ico
Binary file not shown.
Binary file added logo/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions logo/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"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"}