import { Button } from "~/components/ui/button"
import logoPng from "~/images/lume-logo.png?url"
import lumeColorLogoPng from "~/images/lume-color-logo.png?url"
import discordLogoPng from "~/images/discord-logo.png?url"
import { Link } from "@remix-run/react"
export const GeneralLayout = ({ children }: React.PropsWithChildren<{}>) => {
return (
Freedom
Privacy
Ownership
{children}
)
}
const NavigationButton = ({ children }: React.PropsWithChildren) => {
return (
)
}
const ClockIcon = ({ className }: { className?: string }) => {
return (
)
}
const CircleLockIcon = ({ className }: { className?: string }) => {
return (
)
}
const DriveIcon = ({ className }: { className?: string }) => {
return (
)
}
const CloudUploadIcon = ({ className }: { className?: string }) => {
return (
)
}