Skip to content

Commit 4cbc27e

Browse files
feature: this commit introduces initial setup for landing application
1 parent a18ff3b commit 4cbc27e

82 files changed

Lines changed: 10899 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
@import 'tailwindcss';
2+
@import 'tw-animate-css';
3+
4+
@custom-variant dark (&:is(.dark *));
5+
6+
:root {
7+
--background: oklch(1 0 0);
8+
--foreground: oklch(0.145 0 0);
9+
--card: oklch(0.98 0 0);
10+
--card-foreground: oklch(0.145 0 0);
11+
--popover: oklch(1 0 0);
12+
--popover-foreground: oklch(0.145 0 0);
13+
--primary: oklch(0.59 0.22 12);
14+
--primary-foreground: oklch(1 0 0);
15+
--secondary: oklch(0.965 0 0);
16+
--secondary-foreground: oklch(0.205 0 0);
17+
--muted: oklch(0.965 0 0);
18+
--muted-foreground: oklch(0.45 0 0);
19+
--accent: oklch(0.59 0.22 12);
20+
--accent-foreground: oklch(1 0 0);
21+
--destructive: oklch(0.577 0.245 27.325);
22+
--destructive-foreground: oklch(0.577 0.245 27.325);
23+
--border: oklch(0.91 0 0);
24+
--input: oklch(0.91 0 0);
25+
--ring: oklch(0.59 0.22 12);
26+
--chart-1: oklch(0.59 0.22 12);
27+
--chart-2: oklch(0.6 0.118 184.704);
28+
--chart-3: oklch(0.398 0.07 227.392);
29+
--chart-4: oklch(0.828 0.189 84.429);
30+
--chart-5: oklch(0.769 0.188 70.08);
31+
--radius: 0.625rem;
32+
--sidebar: oklch(0.98 0 0);
33+
--sidebar-foreground: oklch(0.145 0 0);
34+
--sidebar-primary: oklch(0.59 0.22 12);
35+
--sidebar-primary-foreground: oklch(1 0 0);
36+
--sidebar-accent: oklch(0.965 0 0);
37+
--sidebar-accent-foreground: oklch(0.205 0 0);
38+
--sidebar-border: oklch(0.91 0 0);
39+
--sidebar-ring: oklch(0.59 0.22 12);
40+
}
41+
42+
@theme inline {
43+
--font-sans: var(--font-inter), 'Inter', sans-serif;
44+
--font-mono: var(--font-space-grotesk), 'Space Grotesk', sans-serif;
45+
--color-background: var(--background);
46+
--color-foreground: var(--foreground);
47+
--color-card: var(--card);
48+
--color-card-foreground: var(--card-foreground);
49+
--color-popover: var(--popover);
50+
--color-popover-foreground: var(--popover-foreground);
51+
--color-primary: var(--primary);
52+
--color-primary-foreground: var(--primary-foreground);
53+
--color-secondary: var(--secondary);
54+
--color-secondary-foreground: var(--secondary-foreground);
55+
--color-muted: var(--muted);
56+
--color-muted-foreground: var(--muted-foreground);
57+
--color-accent: var(--accent);
58+
--color-accent-foreground: var(--accent-foreground);
59+
--color-destructive: var(--destructive);
60+
--color-destructive-foreground: var(--destructive-foreground);
61+
--color-border: var(--border);
62+
--color-input: var(--input);
63+
--color-ring: var(--ring);
64+
--color-chart-1: var(--chart-1);
65+
--color-chart-2: var(--chart-2);
66+
--color-chart-3: var(--chart-3);
67+
--color-chart-4: var(--chart-4);
68+
--color-chart-5: var(--chart-5);
69+
--radius-sm: calc(var(--radius) - 4px);
70+
--radius-md: calc(var(--radius) - 2px);
71+
--radius-lg: var(--radius);
72+
--radius-xl: calc(var(--radius) + 4px);
73+
--color-sidebar: var(--sidebar);
74+
--color-sidebar-foreground: var(--sidebar-foreground);
75+
--color-sidebar-primary: var(--sidebar-primary);
76+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
77+
--color-sidebar-accent: var(--sidebar-accent);
78+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
79+
--color-sidebar-border: var(--sidebar-border);
80+
--color-sidebar-ring: var(--sidebar-ring);
81+
}
82+
83+
@layer base {
84+
* {
85+
@apply border-border outline-ring/50;
86+
}
87+
body {
88+
@apply bg-background text-foreground;
89+
}
90+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import type { Metadata, Viewport } from 'next'
2+
import { Inter, Space_Grotesk } from 'next/font/google'
3+
import { Analytics } from '@vercel/analytics/next'
4+
import './globals.css'
5+
6+
const _inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
7+
const _spaceGrotesk = Space_Grotesk({ subsets: ["latin"], variable: "--font-space-grotesk" });
8+
9+
export const metadata: Metadata = {
10+
title: 'Comanda - Gerencie seus pedidos sem taxas e sem complicação',
11+
description: 'O sistema de gestão de pedidos feito para fast foods. Gerencie pedidos online e presenciais sem taxas de marketplace. Assine por apenas R$100/mes.',
12+
icons: {
13+
icon: '/images/comanda-logo.png',
14+
},
15+
}
16+
17+
export const viewport: Viewport = {
18+
themeColor: '#ed214d',
19+
}
20+
21+
export default function RootLayout({
22+
children,
23+
}: Readonly<{
24+
children: React.ReactNode
25+
}>) {
26+
return (
27+
<html lang="pt-BR">
28+
<body className={`${_inter.variable} ${_spaceGrotesk.variable} font-sans antialiased`} suppressHydrationWarning>
29+
{children}
30+
<Analytics />
31+
</body>
32+
</html>
33+
)
34+
}

Applications/Landing/app/page.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { Navbar } from "@/components/landing/navbar"
2+
import { Hero } from "@/components/landing/hero"
3+
import { StatsBar } from "@/components/landing/stats-bar"
4+
import { Features } from "@/components/landing/features"
5+
import { Pricing } from "@/components/landing/pricing"
6+
import { Testimonials } from "@/components/landing/testimonials"
7+
import { FAQ } from "@/components/landing/faq"
8+
import { FinalCTA } from "@/components/landing/final-cta"
9+
import { Footer } from "@/components/landing/footer"
10+
11+
export default function LandingPage() {
12+
return (
13+
<main>
14+
<Navbar />
15+
<Hero />
16+
<StatsBar />
17+
<Features />
18+
<Pricing />
19+
<Testimonials />
20+
<FAQ />
21+
<FinalCTA />
22+
<Footer />
23+
</main>
24+
)
25+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
},
20+
"iconLibrary": "lucide"
21+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
"use client"
2+
3+
import {Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "@/components/ui/accordion"
4+
5+
const faqs: Record<string, string>[] = [
6+
{
7+
question: "Preciso de algum equipamento especial?",
8+
answer: "Não! Você só precisa de um computador, tablet ou celular com acesso a internet. O Comanda funciona 100% no navegador, sem necessidade de instalar nada.",
9+
},
10+
{
11+
question: "É realmente sem taxas por pedido?",
12+
answer: "Sim! Você paga apenas R$100 fixos por mês. Não importa se você recebe 10 ou 10.000 pedidos, o valor é sempre o mesmo. Zero comissão por venda.",
13+
},
14+
{
15+
question: "Como meus clientes fazem pedidos online?",
16+
answer: "Você recebe um link exclusivo do seu cardápio digital. Seus clientes acessam pelo celular, escolhem os itens e fazem o pedido. Você recebe tudo no painel em tempo real.",
17+
},
18+
{
19+
question: "Posso cancelar a qualquer momento?",
20+
answer: "Sim, sem nenhum problema. Não temos fidelidade, multa ou período mínimo. Se não gostar, cancele quando quiser.",
21+
},
22+
{
23+
question: "É difícil de configurar?",
24+
answer: "Não! Em menos de 5 minutos você cria sua conta, cadastra seus produtos e já pode começar a receber pedidos. Temos tutoriais e suporte para te ajudar.",
25+
},
26+
{
27+
question: "Funciona para delivery e retirada?",
28+
answer: "Sim! O Comanda suporta pedidos para delivery, retirada no balcão e consumo no local. Você configura como quiser.",
29+
}
30+
]
31+
32+
export function FAQ() {
33+
return (
34+
<section id="faq" className="py-24 lg:py-32">
35+
<div className="mx-auto max-w-3xl px-6">
36+
<div className="text-center">
37+
<span className="text-sm font-medium text-[#ed214d]">Duvidas frequentes</span>
38+
<h2 className="mt-3 font-mono text-3xl font-bold tracking-tight text-foreground sm:text-4xl text-balance">
39+
Perguntas que todo dono de fast food faz
40+
</h2>
41+
</div>
42+
43+
<Accordion type="single" collapsible className="mt-12">
44+
{faqs.map((faq, index) => (
45+
<AccordionItem key={index} value={`item-${index}`} className="border-border">
46+
<AccordionTrigger className="text-left text-sm font-medium text-foreground hover:text-[#ed214d] hover:no-underline">
47+
{faq.question}
48+
</AccordionTrigger>
49+
<AccordionContent className="text-sm leading-relaxed text-muted-foreground">
50+
{faq.answer}
51+
</AccordionContent>
52+
</AccordionItem>
53+
))}
54+
</Accordion>
55+
</div>
56+
</section>
57+
)
58+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
import { MonitorSmartphone, ShoppingBag, Zap, Globe, Shield } from "lucide-react"
2+
3+
const features: Record<string, any>[] = [
4+
{
5+
icon: MonitorSmartphone,
6+
title: "Pedidos online e presenciais",
7+
description: "Receba pedidos do seu cardápio digital e do balcão em um único painel. Tudo sincronizado em tempo real.",
8+
},
9+
{
10+
icon: ShoppingBag,
11+
title: "Cardápio digital personalizado",
12+
description: "Crie seu cardápio online com fotos, descrições e preços. Seus clientes pedem direto pelo celular.",
13+
},
14+
{
15+
icon: Zap,
16+
title: "Gestão de cozinha",
17+
description: "Painel dedicado para a cozinha visualizar pedidos em fila, preparo e prontos para entrega.",
18+
},
19+
{
20+
icon: Globe,
21+
title: "Sem taxas de marketplace",
22+
description: "Diferente de iFood e similares, você não paga comissão por pedido. Preço fixo mensal e pronto.",
23+
},
24+
{
25+
icon: Shield,
26+
title: "Seguro e confiável",
27+
description: "Seus dados ficam protegidos com criptografia. Servidor dedicado com 99,9% de disponibilidade.",
28+
},
29+
]
30+
31+
export function Features() {
32+
return (
33+
<section id="funcionalidades" className="py-24 lg:py-32">
34+
<div className="mx-auto max-w-7xl px-6">
35+
<div className="mx-auto max-w-2xl text-center">
36+
<span className="text-sm font-medium text-[#ed214d]">Funcionalidades</span>
37+
<h2 className="mt-3 font-mono text-3xl font-bold tracking-tight text-foreground sm:text-4xl text-balance">
38+
Tudo que seu fast food precisa em um so lugar
39+
</h2>
40+
<p className="mt-4 text-lg leading-relaxed text-muted-foreground">
41+
Chega de malabarismos entre WhatsApp, caderninho e marketplace.
42+
O Comanda centraliza tudo pra voce.
43+
</p>
44+
</div>
45+
46+
<div className="mt-16 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
47+
{features.map((feature) => {
48+
const Icon = feature.icon
49+
return (
50+
<div key={feature.title} className="group rounded-xl border border-border bg-card p-6 transition-all hover:border-[#ed214d]/30 hover:bg-[#ed214d]/5">
51+
<div className="mb-4 flex h-10 w-10 items-center justify-center rounded-lg bg-[#ed214d]/10">
52+
<Icon className="h-5 w-5 text-[#ed214d]" />
53+
</div>
54+
<h3 className="font-mono text-lg font-semibold text-foreground">{feature.title}</h3>
55+
<p className="mt-2 text-sm leading-relaxed text-muted-foreground">{feature.description}</p>
56+
</div>
57+
)
58+
})}
59+
</div>
60+
</div>
61+
</section>
62+
)
63+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { ArrowRight } from "lucide-react"
2+
import { Button } from "@/components/ui/button"
3+
4+
export function FinalCTA() {
5+
return (
6+
<section className="border-t border-border bg-muted/50 py-24 lg:py-32">
7+
<div className="mx-auto max-w-7xl px-6">
8+
<div className="relative overflow-hidden rounded-2xl border border-[#ed214d]/30 bg-background p-10 sm:p-16 lg:p-20">
9+
<div className="pointer-events-none absolute -top-40 left-1/2 -translate-x-1/2 h-80 w-[500px] rounded-full bg-[#ed214d]/10 blur-[100px]" />
10+
11+
<div className="relative mx-auto max-w-2xl text-center">
12+
<h2 className="font-mono text-3xl font-bold tracking-tight text-foreground sm:text-4xl lg:text-5xl text-balance">
13+
Pare de pagar comissões. Comece a lucrar de verdade.
14+
</h2>
15+
16+
<p className="mt-6 text-lg leading-relaxed text-muted-foreground">
17+
Junte-se a mais de 2.000 donos de fast food que já escolheram o Comanda.
18+
Crie sua conta agora e comece a receber pedidos em minutos.
19+
</p>
20+
21+
<div className="mt-10 flex flex-col items-center gap-4 sm:flex-row sm:justify-center">
22+
<Button size="lg" className="bg-[#ed214d] px-10 text-base font-semibold text-white hover:bg-[#d91b43]">
23+
Criar minha conta agora
24+
<ArrowRight className="ml-2 h-4 w-4" />
25+
</Button>
26+
</div>
27+
28+
<p className="mt-4 text-sm text-muted-foreground">
29+
R$100/mês fixos. Sem taxa por pedido. Sem fidelidade. Cancele quando quiser.
30+
</p>
31+
</div>
32+
</div>
33+
</div>
34+
</section>
35+
)
36+
}

0 commit comments

Comments
 (0)