Merge version_1 into main #1
@@ -97,7 +97,7 @@ export default function ContactPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/word-search-look-up-random-tags_53876-138493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/word-search-look-up-random-tags_53876-138493.jpg?_wi=2"
|
||||
imageAlt="FAQ e Perguntas Frequentes"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -90,21 +90,21 @@ export default function IdeasPage() {
|
||||
name: "Canecas Personalizadas",
|
||||
price: "R$35 - R$70",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg",
|
||||
"http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "agendas",
|
||||
name: "Agendas Personalizadas",
|
||||
price: "R$69 - R$150",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg",
|
||||
"http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "lembrancinhas",
|
||||
name: "Lembrancinhas para Eventos",
|
||||
price: "R$25 - R$80",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg",
|
||||
"http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
@@ -126,7 +126,7 @@ export default function IdeasPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/word-search-look-up-random-tags_53876-138493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/word-search-look-up-random-tags_53876-138493.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
faqs={[
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Archivo } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Estúdio 161 Personalizados - Presentes Criativos em Cascavel",
|
||||
description: "Presentes personalizados únicos em Cascavel. Canecas, agendas, lembrancinhas e produtos exclusivos. Atendimento pelo WhatsApp (45) 99966-1514.",
|
||||
keywords: "presentes personalizados Cascavel, canecas personalizadas, agendas personalizadas, lembrancinhas, presentes criativos, estúdio personalizações",
|
||||
metadataBase: new URL("https://estudio161.com.br"),
|
||||
alternates: {
|
||||
canonical: "https://estudio161.com.br",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Estúdio 161 Personalizados - Presentes Criativos",
|
||||
description: "Transformamos suas ideias em presentes únicos e personalizados. Canecas, agendas, lembrancinhas e muito mais em Cascavel, Paraná.",
|
||||
url: "https://estudio161.com.br",
|
||||
siteName: "Estúdio 161 Personalizados",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg",
|
||||
alt: "Produtos personalizados do Estúdio 161",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Estúdio 161 Personalizados",
|
||||
description: "Presentes personalizados criativos em Cascavel. Pedi seu orçamento no WhatsApp!",
|
||||
images: ["http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -98,7 +98,7 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg?_wi=1",
|
||||
imageAlt: "Produtos personalizados criativos",
|
||||
},
|
||||
]}
|
||||
@@ -121,21 +121,21 @@ export default function HomePage() {
|
||||
id: "canecas",
|
||||
name: "Canecas Personalizadas",
|
||||
price: "R$35 - R$70",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg?_wi=1",
|
||||
imageAlt: "Canecas personalizadas",
|
||||
},
|
||||
{
|
||||
id: "agendas",
|
||||
name: "Agendas Personalizadas",
|
||||
price: "R$69 - R$150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg?_wi=1",
|
||||
imageAlt: "Agendas personalizadas",
|
||||
},
|
||||
{
|
||||
id: "lembrancinhas",
|
||||
name: "Lembrancinhas para Eventos",
|
||||
price: "R$25 - R$80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg?_wi=1",
|
||||
imageAlt: "Lembrancinhas para eventos",
|
||||
},
|
||||
]}
|
||||
@@ -165,7 +165,7 @@ export default function HomePage() {
|
||||
title: "Personalização de Verdade",
|
||||
subtitle: "Seus produtos, sua forma",
|
||||
description: "Não reproduzimos modelos prontos. Criamos produtos únicos que refletem sua identidade e criatividade.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094602.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094602.jpg?_wi=1",
|
||||
imageAlt: "Personalização de produtos",
|
||||
},
|
||||
{
|
||||
@@ -174,7 +174,7 @@ export default function HomePage() {
|
||||
title: "Atendimento Local e Rápido",
|
||||
subtitle: "Próximo a você",
|
||||
description: "Localizados em Cascavel, oferecemos atendimento direto pelo WhatsApp e suporte próximo ao cliente.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-table-near-elderly-people_23-2147947984.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-table-near-elderly-people_23-2147947984.jpg?_wi=1",
|
||||
imageAlt: "Atendimento local",
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
title: "Ideias Criativas Exclusivas",
|
||||
subtitle: "Inovação em cada projeto",
|
||||
description: "Nossa equipe criativa está sempre pronta para transformar suas ideias em realidade com design exclusivo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-creative-people-analyzing-result-work_329181-15528.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-creative-people-analyzing-result-work_329181-15528.jpg?_wi=1",
|
||||
imageAlt: "Equipe criativa",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
title: "Produção Própria",
|
||||
subtitle: "Controle de qualidade total",
|
||||
description: "Toda produção é feita internamente, garantindo qualidade e controle em cada etapa do processo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-cup-coffee_1339-7144.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-cup-coffee_1339-7144.jpg?_wi=1",
|
||||
imageAlt: "Produção própria",
|
||||
},
|
||||
]}
|
||||
@@ -236,21 +236,21 @@ export default function HomePage() {
|
||||
id: "gallery-4",
|
||||
name: "Presente Corporativo Personalizado",
|
||||
price: "Sob Orçamento",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg?_wi=1",
|
||||
imageAlt: "Presente corporativo",
|
||||
},
|
||||
{
|
||||
id: "gallery-5",
|
||||
name: "Kit Presente Criativo",
|
||||
price: "Sob Orçamento",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-still-life-christmas-present-arrangement_23-2149161134.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-still-life-christmas-present-arrangement_23-2149161134.jpg?_wi=1",
|
||||
imageAlt: "Kit presente criativo",
|
||||
},
|
||||
{
|
||||
id: "gallery-6",
|
||||
name: "Embalagem Personalizada Premium",
|
||||
price: "Sob Orçamento",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-valentine-gifts-with-hearts_1153-1219.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-valentine-gifts-with-hearts_1153-1219.jpg?_wi=1",
|
||||
imageAlt: "Embalagem personalizada",
|
||||
},
|
||||
]}
|
||||
@@ -275,7 +275,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg?_wi=1",
|
||||
imageAlt: "Maria Silva",
|
||||
},
|
||||
{
|
||||
@@ -284,7 +284,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1",
|
||||
imageAlt: "João Santos",
|
||||
},
|
||||
{
|
||||
@@ -293,7 +293,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg?_wi=1",
|
||||
imageAlt: "Ana Costa",
|
||||
},
|
||||
{
|
||||
@@ -302,7 +302,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-attractive-adult-male-with-beard-sitting-open-terrace-typing-laptop-looking-screen-with-interested-smile-using-wi-fi-communicate-online-while-away-vacations_273609-6597.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-attractive-adult-male-with-beard-sitting-open-terrace-typing-laptop-looking-screen-with-interested-smile-using-wi-fi-communicate-online-while-away-vacations_273609-6597.jpg?_wi=1",
|
||||
imageAlt: "Carlos Oliveira",
|
||||
},
|
||||
{
|
||||
@@ -311,7 +311,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-hugging-pillow-white-background_114579-78304.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-hugging-pillow-white-background_114579-78304.jpg?_wi=1",
|
||||
imageAlt: "Beatriz Rocha",
|
||||
},
|
||||
{
|
||||
@@ -320,7 +320,7 @@ export default function HomePage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg?_wi=1",
|
||||
imageAlt: "Pedro Martins",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function OccasionsPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970213.jpg?_wi=2",
|
||||
imageAlt: "Produtos personalizados criativos",
|
||||
},
|
||||
]}
|
||||
@@ -115,21 +115,21 @@ export default function OccasionsPage() {
|
||||
id: "aniversarios",
|
||||
name: "Presentes para Aniversário",
|
||||
price: "R$35 - R$150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg?_wi=4",
|
||||
imageAlt: "Presentes para aniversário personalizados",
|
||||
},
|
||||
{
|
||||
id: "casamentos",
|
||||
name: "Presentes para Casamento",
|
||||
price: "R$50 - R$200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg?_wi=4",
|
||||
imageAlt: "Presentes para casamento personalizados",
|
||||
},
|
||||
{
|
||||
id: "corporativo",
|
||||
name: "Presentes Corporativos",
|
||||
price: "R$45 - R$180",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg?_wi=3",
|
||||
imageAlt: "Presentes corporativos personalizados",
|
||||
},
|
||||
]}
|
||||
@@ -160,7 +160,7 @@ export default function OccasionsPage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg?_wi=3",
|
||||
imageAlt: "Maria Silva",
|
||||
},
|
||||
{
|
||||
@@ -169,7 +169,7 @@ export default function OccasionsPage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=3",
|
||||
imageAlt: "João Santos",
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@ export default function OccasionsPage() {
|
||||
role: "Cliente",
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg?_wi=3",
|
||||
imageAlt: "Ana Costa",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -90,42 +90,42 @@ export default function ProdutosPage() {
|
||||
id: "canecas",
|
||||
name: "Canecas Personalizadas",
|
||||
price: "R$35 - R$70",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-pottery-objects_23-2148970780.jpg?_wi=2",
|
||||
imageAlt: "Canecas personalizadas",
|
||||
},
|
||||
{
|
||||
id: "agendas",
|
||||
name: "Agendas Personalizadas",
|
||||
price: "R$69 - R$150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bunch-flowers-with-gift-boxes-diary-black-tea-wooden-backdrop_23-2147926844.jpg?_wi=2",
|
||||
imageAlt: "Agendas personalizadas",
|
||||
},
|
||||
{
|
||||
id: "lembrancinhas",
|
||||
name: "Lembrancinhas para Eventos",
|
||||
price: "R$25 - R$80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-decoration-with-copy-space_23-2148243890.jpg?_wi=2",
|
||||
imageAlt: "Lembrancinhas para eventos",
|
||||
},
|
||||
{
|
||||
id: "corporate",
|
||||
name: "Presentes Corporativos",
|
||||
price: "Sob Orçamento",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg?_wi=2",
|
||||
imageAlt: "Presentes corporativos",
|
||||
},
|
||||
{
|
||||
id: "kits",
|
||||
name: "Kits Personalizados Premium",
|
||||
price: "R$100 - R$300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-still-life-christmas-present-arrangement_23-2149161134.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/festive-still-life-christmas-present-arrangement_23-2149161134.jpg?_wi=2",
|
||||
imageAlt: "Kits premium personalizados",
|
||||
},
|
||||
{
|
||||
id: "packaging",
|
||||
name: "Embalagem Premium Personalizada",
|
||||
price: "R$15 - R$50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-valentine-gifts-with-hearts_1153-1219.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-valentine-gifts-with-hearts_1153-1219.jpg?_wi=2",
|
||||
imageAlt: "Embalagem personalizada",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Não reproduzimos modelos prontos. Criamos produtos únicos que refletem sua identidade e criatividade.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094602.jpg",
|
||||
"http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094602.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
@@ -101,7 +101,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Localizados em Cascavel, oferecemos atendimento direto pelo WhatsApp e suporte próximo ao cliente.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-sitting-table-near-elderly-people_23-2147947984.jpg",
|
||||
"http://img.b2bpic.net/free-photo/woman-sitting-table-near-elderly-people_23-2147947984.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Nossa equipe criativa está sempre pronta para transformar suas ideias em realidade com design exclusivo.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/group-creative-people-analyzing-result-work_329181-15528.jpg",
|
||||
"http://img.b2bpic.net/free-photo/group-creative-people-analyzing-result-work_329181-15528.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
@@ -121,7 +121,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Toda produção é feita internamente, garantindo qualidade e controle em cada etapa do processo.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/empty-cup-coffee_1339-7144.jpg",
|
||||
"http://img.b2bpic.net/free-photo/empty-cup-coffee_1339-7144.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -145,7 +145,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg",
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-enchanting-woman-with-blue-eyes-tanned-skin-pretty-european-girl-posing-with-charming-smile-wooden-wall_197531-9115.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -154,7 +154,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -163,7 +163,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg",
|
||||
"http://img.b2bpic.net/free-photo/business-professional_1098-14759.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -172,7 +172,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-view-attractive-adult-male-with-beard-sitting-open-terrace-typing-laptop-looking-screen-with-interested-smile-using-wi-fi-communicate-online-while-away-vacations_273609-6597.jpg",
|
||||
"http://img.b2bpic.net/free-photo/close-up-view-attractive-adult-male-with-beard-sitting-open-terrace-typing-laptop-looking-screen-with-interested-smile-using-wi-fi-communicate-online-while-away-vacations_273609-6597.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -181,7 +181,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-young-woman-hugging-pillow-white-background_114579-78304.jpg",
|
||||
"http://img.b2bpic.net/free-photo/smiling-young-woman-hugging-pillow-white-background_114579-78304.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -190,7 +190,7 @@ export default function AboutPage() {
|
||||
company: "Cascavel",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg",
|
||||
"http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user