create-brainerce-store 1.65.0 → 1.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/messages/en.json +505 -502
- package/messages/he.json +505 -502
- package/package.json +1 -1
- package/templates/nextjs/base/.env.local.ejs +45 -24
- package/templates/nextjs/base/.eslintrc.json +51 -57
- package/templates/nextjs/base/AGENTS.md.ejs +107 -81
- package/templates/nextjs/base/CLAUDE.md.ejs +118 -92
- package/templates/nextjs/base/next.config.ts +103 -86
- package/templates/nextjs/base/scripts/fetch-store-info.mjs +104 -97
- package/templates/nextjs/base/src/app/agents.md/route.ts +4 -3
- package/templates/nextjs/base/src/app/api/auth/me/route.ts +65 -59
- package/templates/nextjs/base/src/app/api/store/[...path]/route.ts +255 -242
- package/templates/nextjs/base/src/app/blog/[slug]/page.tsx.ejs +311 -308
- package/templates/nextjs/base/src/app/blog/page.tsx.ejs +277 -276
- package/templates/nextjs/base/src/app/blog/rss.xml/route.ts +4 -3
- package/templates/nextjs/base/src/app/category/[slug]/page.tsx +6 -5
- package/templates/nextjs/base/src/app/faq/page.tsx.ejs +46 -46
- package/templates/nextjs/base/src/app/indexnow-key.txt/route.ts +25 -26
- package/templates/nextjs/base/src/app/layout.tsx.ejs +273 -257
- package/templates/nextjs/base/src/app/llms.txt/route.ts +4 -3
- package/templates/nextjs/base/src/app/opengraph-image.tsx +1 -1
- package/templates/nextjs/base/src/app/page.tsx +65 -64
- package/templates/nextjs/base/src/app/pages/[slug]/page.tsx.ejs +92 -92
- package/templates/nextjs/base/src/app/products/[slug]/page.tsx +10 -5
- package/templates/nextjs/base/src/app/robots.ts +3 -2
- package/templates/nextjs/base/src/app/sitemap.ts +4 -3
- package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +294 -292
- package/templates/nextjs/base/src/components/seo/article-json-ld.tsx +60 -59
- package/templates/nextjs/base/src/components/seo/category-json-ld.tsx +60 -61
- package/templates/nextjs/base/src/components/seo/product-json-ld.tsx +16 -2
- package/templates/nextjs/base/src/core/lib/brainerce.server.ts +81 -0
- package/templates/nextjs/base/src/core/lib/brainerce.ts.ejs +60 -110
- package/templates/nextjs/base/src/core/lib/site-url.ts +197 -0
- package/templates/nextjs/base/src/ui/product/faq-section.tsx.ejs +46 -0
- package/templates/nextjs/base/src/ui/product/review-form.tsx +294 -294
- package/templates/nextjs/base/src/ui/product/reviews-section.tsx.ejs +108 -108
- package/templates/nextjs/designs/atelier/app-overlay/layout.tsx.ejs +301 -285
- package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +97 -96
- package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +142 -141
- package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +139 -138
- package/templates/nextjs/designs/atelier/ui/product/review-form.tsx +295 -267
- package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -148
- package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +72 -71
- package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +83 -82
- package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +120 -119
- package/templates/nextjs/ui-canvas/product/faq-section.tsx.ejs +54 -0
- package/templates/nextjs/ui-canvas/product/review-form.tsx +267 -266
- package/templates/nextjs/ui-canvas/product/reviews-section.tsx.ejs +96 -96
|
@@ -1,96 +1,97 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* FAQ accordion (bare skeleton) — fully driven by the merchant's dashboard
|
|
3
|
-
* configuration.
|
|
4
|
-
*
|
|
5
|
-
* The merchant configures FAQs in the Brainerce dashboard under
|
|
6
|
-
* Sell → Content → FAQ
|
|
7
|
-
*
|
|
8
|
-
* Each FAQ row has a `key` (e.g. 'main', 'shipping', 'returns'). Pass the
|
|
9
|
-
* pre-fetched payload as `faq`; this component knows nothing about which
|
|
10
|
-
* key it came from.
|
|
11
|
-
*
|
|
12
|
-
* Two render branches:
|
|
13
|
-
* 1. `faq` has items → accordion of question/answer pairs
|
|
14
|
-
* 2. `faq` is null OR has no items → friendly empty state with a contact
|
|
15
|
-
* CTA, so the /faq page never looks broken before the merchant seeds.
|
|
16
|
-
*
|
|
17
|
-
* Security: FAQ answers may contain merchant-authored HTML — we sanitize
|
|
18
|
-
* via `sanitizeHtml` before injecting via dangerouslySetInnerHTML.
|
|
19
|
-
*/
|
|
20
|
-
'use client';
|
|
21
|
-
|
|
22
|
-
import * as React from 'react';
|
|
23
|
-
import
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
//
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
<
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
1
|
+
/**
|
|
2
|
+
* FAQ accordion (bare skeleton) — fully driven by the merchant's dashboard
|
|
3
|
+
* configuration.
|
|
4
|
+
*
|
|
5
|
+
* The merchant configures FAQs in the Brainerce dashboard under
|
|
6
|
+
* Sell → Content → FAQ
|
|
7
|
+
*
|
|
8
|
+
* Each FAQ row has a `key` (e.g. 'main', 'shipping', 'returns'). Pass the
|
|
9
|
+
* pre-fetched payload as `faq`; this component knows nothing about which
|
|
10
|
+
* key it came from.
|
|
11
|
+
*
|
|
12
|
+
* Two render branches:
|
|
13
|
+
* 1. `faq` has items → accordion of question/answer pairs
|
|
14
|
+
* 2. `faq` is null OR has no items → friendly empty state with a contact
|
|
15
|
+
* CTA, so the /faq page never looks broken before the merchant seeds.
|
|
16
|
+
*
|
|
17
|
+
* Security: FAQ answers may contain merchant-authored HTML — we sanitize
|
|
18
|
+
* via `sanitizeHtml` before injecting via dangerouslySetInnerHTML.
|
|
19
|
+
*/
|
|
20
|
+
'use client';
|
|
21
|
+
|
|
22
|
+
import * as React from 'react';
|
|
23
|
+
import { Link } from '@/core/lib/navigation';
|
|
24
|
+
import type { Content } from 'brainerce';
|
|
25
|
+
import { useTranslations } from '@/core/lib/translations';
|
|
26
|
+
import { sanitizeHtml } from '@/core/lib/sanitize';
|
|
27
|
+
|
|
28
|
+
interface FaqSectionProps {
|
|
29
|
+
/** Pre-fetched FAQ row. `null` renders the empty-state fallback. */
|
|
30
|
+
faq: Content<'FAQ'> | null;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function FaqSection({ faq }: FaqSectionProps) {
|
|
34
|
+
const t = useTranslations('content');
|
|
35
|
+
|
|
36
|
+
const items = faq?.data?.items ?? [];
|
|
37
|
+
const heading = faq?.name || t('faqTitle');
|
|
38
|
+
|
|
39
|
+
// Empty state — runs when the merchant hasn't created a FAQ row yet,
|
|
40
|
+
// or the row exists but contains no items.
|
|
41
|
+
if (!faq || items.length === 0) {
|
|
42
|
+
return (
|
|
43
|
+
<section className="container-page py-16 lg:py-24">
|
|
44
|
+
<div className="card mx-auto flex max-w-lg flex-col items-center gap-3 px-8 py-14 text-center">
|
|
45
|
+
<h1 className="text-3xl">{heading}</h1>
|
|
46
|
+
<p className="text-muted-foreground">
|
|
47
|
+
<strong className="text-foreground mb-1 block font-semibold">
|
|
48
|
+
{t('faqEmptyTitle')}
|
|
49
|
+
</strong>
|
|
50
|
+
{t('faqEmptyBody')}
|
|
51
|
+
</p>
|
|
52
|
+
<Link href="/contact" className="btn-primary btn-md mt-3">
|
|
53
|
+
{t('faqContactCta')}
|
|
54
|
+
</Link>
|
|
55
|
+
</div>
|
|
56
|
+
</section>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return (
|
|
61
|
+
<section className="container-page max-w-3xl py-14 lg:py-20">
|
|
62
|
+
<h1 className="mb-8 text-center text-3xl sm:text-4xl">{heading}</h1>
|
|
63
|
+
<ul className="space-y-3">
|
|
64
|
+
{items.map((item, idx) => (
|
|
65
|
+
<li key={idx}>
|
|
66
|
+
<details open={idx === 0} className="card group overflow-hidden">
|
|
67
|
+
<summary className="text-foreground hover:bg-secondary/60 flex cursor-pointer list-none items-center justify-between gap-4 px-5 py-4 font-sans text-[15px] font-semibold transition-colors [&::-webkit-details-marker]:hidden">
|
|
68
|
+
{item.question}
|
|
69
|
+
<span
|
|
70
|
+
aria-hidden="true"
|
|
71
|
+
className="text-muted-foreground shrink-0 transition-transform duration-200 group-open:rotate-180"
|
|
72
|
+
>
|
|
73
|
+
<svg
|
|
74
|
+
width="20"
|
|
75
|
+
height="20"
|
|
76
|
+
viewBox="0 0 24 24"
|
|
77
|
+
fill="none"
|
|
78
|
+
stroke="currentColor"
|
|
79
|
+
strokeWidth="1.75"
|
|
80
|
+
strokeLinecap="round"
|
|
81
|
+
strokeLinejoin="round"
|
|
82
|
+
>
|
|
83
|
+
<path d="m6 9 6 6 6-6" />
|
|
84
|
+
</svg>
|
|
85
|
+
</span>
|
|
86
|
+
</summary>
|
|
87
|
+
<div
|
|
88
|
+
className="prose-store border-t px-5 py-4"
|
|
89
|
+
dangerouslySetInnerHTML={{ __html: sanitizeHtml(item.answer) }}
|
|
90
|
+
/>
|
|
91
|
+
</details>
|
|
92
|
+
</li>
|
|
93
|
+
))}
|
|
94
|
+
</ul>
|
|
95
|
+
</section>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
@@ -1,141 +1,142 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Storefront footer — driven by the merchant's dashboard configuration
|
|
3
|
-
* (Sell → Content → Footer), rendered as a deep-forest "signature" band:
|
|
4
|
-
* brand block + tagline + social, merchant link columns, copyright bar.
|
|
5
|
-
*
|
|
6
|
-
* API contract:
|
|
7
|
-
* GET → client.content.footer.get('main', locale) → Content<'FOOTER'> | null
|
|
8
|
-
* Returns null on 404 — the fallback branch renders the same designed
|
|
9
|
-
* chrome with essential storefront links so the page never looks broken.
|
|
10
|
-
*/
|
|
11
|
-
import * as React from 'react';
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
footer
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
locale
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
const
|
|
40
|
-
const
|
|
41
|
-
const
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
{ url: '/
|
|
47
|
-
{ url: '/
|
|
48
|
-
{ url: '/
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
{columns
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
<p
|
|
134
|
-
|
|
135
|
-
{
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Storefront footer — driven by the merchant's dashboard configuration
|
|
3
|
+
* (Sell → Content → Footer), rendered as a deep-forest "signature" band:
|
|
4
|
+
* brand block + tagline + social, merchant link columns, copyright bar.
|
|
5
|
+
*
|
|
6
|
+
* API contract:
|
|
7
|
+
* GET → client.content.footer.get('main', locale) → Content<'FOOTER'> | null
|
|
8
|
+
* Returns null on 404 — the fallback branch renders the same designed
|
|
9
|
+
* chrome with essential storefront links so the page never looks broken.
|
|
10
|
+
*/
|
|
11
|
+
import * as React from 'react';
|
|
12
|
+
import { Link } from '@/core/lib/navigation';
|
|
13
|
+
import type { Content } from 'brainerce';
|
|
14
|
+
<% if (i18nEnabled) { %>
|
|
15
|
+
import { getMessages, defaultLocale } from '@/i18n';
|
|
16
|
+
<% } else { %>
|
|
17
|
+
import { messages as staticMessages, defaultLocale } from '@/i18n';
|
|
18
|
+
<% } %>
|
|
19
|
+
import { IconSocial, IconShield } from '@/ui/shared/icons';
|
|
20
|
+
import { resolveNavUrl } from '@/ui/layout/nav-url';
|
|
21
|
+
|
|
22
|
+
interface SiteFooterProps {
|
|
23
|
+
/** Pre-fetched footer payload (server-side). `null` triggers fallback rendering. */
|
|
24
|
+
footer: Content<'FOOTER'> | null;
|
|
25
|
+
/** Store name shown in the brand block + fallback copyright. */
|
|
26
|
+
storeName?: string;
|
|
27
|
+
/** Store locale for the translation-key copy (server component). */
|
|
28
|
+
locale?: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export async function SiteFooter({ footer, storeName, locale = defaultLocale }: SiteFooterProps) {
|
|
32
|
+
<% if (i18nEnabled) { %>
|
|
33
|
+
const messages = await getMessages(locale);
|
|
34
|
+
<% } else { %>
|
|
35
|
+
const messages = staticMessages;
|
|
36
|
+
<% } %>
|
|
37
|
+
const t = (messages.footer ?? {}) as Record<string, string>;
|
|
38
|
+
|
|
39
|
+
const data = footer?.data;
|
|
40
|
+
const columns = data?.columns ?? [];
|
|
41
|
+
const social = data?.social ?? [];
|
|
42
|
+
const year = new Date().getFullYear();
|
|
43
|
+
const brandLabel = storeName ?? 'Store';
|
|
44
|
+
|
|
45
|
+
const fallbackLinks = [
|
|
46
|
+
{ url: '/products', label: t.linkProducts },
|
|
47
|
+
{ url: '/faq', label: t.linkFaq },
|
|
48
|
+
{ url: '/contact', label: t.linkContact },
|
|
49
|
+
{ url: '/cart', label: t.linkCart },
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
return (
|
|
53
|
+
<footer className="mt-auto bg-primary text-primary-foreground">
|
|
54
|
+
<div className="container-page grid gap-10 py-14 sm:grid-cols-2 lg:grid-cols-4 lg:py-16">
|
|
55
|
+
{/* Brand block */}
|
|
56
|
+
<div className="sm:col-span-2 lg:col-span-2 lg:pe-16">
|
|
57
|
+
<Link href="/" className="font-display text-2xl font-semibold">
|
|
58
|
+
{brandLabel}
|
|
59
|
+
</Link>
|
|
60
|
+
<p className="mt-3 max-w-sm text-sm leading-6 text-primary-foreground/70">
|
|
61
|
+
{t.tagline}
|
|
62
|
+
</p>
|
|
63
|
+
|
|
64
|
+
{social.length > 0 && (
|
|
65
|
+
<div className="mt-6">
|
|
66
|
+
<p className="mb-3 text-xs font-semibold uppercase tracking-widest text-primary-foreground/60">
|
|
67
|
+
{t.followUs}
|
|
68
|
+
</p>
|
|
69
|
+
<ul className="flex flex-wrap items-center gap-2">
|
|
70
|
+
{social.map((entry, idx) => (
|
|
71
|
+
<li key={`${entry.platform}-${idx}`}>
|
|
72
|
+
<a
|
|
73
|
+
href={entry.url}
|
|
74
|
+
target="_blank"
|
|
75
|
+
rel="noopener noreferrer"
|
|
76
|
+
aria-label={entry.platform}
|
|
77
|
+
className="inline-flex h-10 w-10 items-center justify-center rounded-full border border-primary-foreground/25 text-primary-foreground/85 transition-colors hover:bg-primary-foreground hover:text-primary"
|
|
78
|
+
>
|
|
79
|
+
<IconSocial platform={entry.platform} size={20} />
|
|
80
|
+
</a>
|
|
81
|
+
</li>
|
|
82
|
+
))}
|
|
83
|
+
</ul>
|
|
84
|
+
</div>
|
|
85
|
+
)}
|
|
86
|
+
</div>
|
|
87
|
+
|
|
88
|
+
{/* Merchant link columns (or essential fallback links) */}
|
|
89
|
+
{columns.length > 0 ? (
|
|
90
|
+
columns.map((col, idx) => (
|
|
91
|
+
<nav key={`${col.title}-${idx}`} aria-label={col.title}>
|
|
92
|
+
<h3 className="mb-4 font-sans text-sm font-semibold text-primary-foreground">
|
|
93
|
+
{col.title}
|
|
94
|
+
</h3>
|
|
95
|
+
<ul className="space-y-2.5">
|
|
96
|
+
{col.links.map((link, linkIdx) => (
|
|
97
|
+
<li key={`${link.url}-${linkIdx}`}>
|
|
98
|
+
<a
|
|
99
|
+
href={resolveNavUrl(link.url)}
|
|
100
|
+
className="text-sm text-primary-foreground/70 transition-colors hover:text-primary-foreground"
|
|
101
|
+
>
|
|
102
|
+
{link.label}
|
|
103
|
+
</a>
|
|
104
|
+
</li>
|
|
105
|
+
))}
|
|
106
|
+
</ul>
|
|
107
|
+
</nav>
|
|
108
|
+
))
|
|
109
|
+
) : (
|
|
110
|
+
<nav aria-label={t.quickLinksTitle}>
|
|
111
|
+
<h3 className="mb-4 font-sans text-sm font-semibold text-primary-foreground">
|
|
112
|
+
{t.quickLinksTitle}
|
|
113
|
+
</h3>
|
|
114
|
+
<ul className="space-y-2.5">
|
|
115
|
+
{fallbackLinks.map((link) => (
|
|
116
|
+
<li key={link.url}>
|
|
117
|
+
<a
|
|
118
|
+
href={link.url}
|
|
119
|
+
className="text-sm text-primary-foreground/70 transition-colors hover:text-primary-foreground"
|
|
120
|
+
>
|
|
121
|
+
{link.label}
|
|
122
|
+
</a>
|
|
123
|
+
</li>
|
|
124
|
+
))}
|
|
125
|
+
</ul>
|
|
126
|
+
</nav>
|
|
127
|
+
)}
|
|
128
|
+
</div>
|
|
129
|
+
|
|
130
|
+
{/* Bottom bar */}
|
|
131
|
+
<div className="border-t border-primary-foreground/15">
|
|
132
|
+
<div className="container-page flex flex-col items-center justify-between gap-3 py-5 text-xs text-primary-foreground/60 sm:flex-row">
|
|
133
|
+
<p>{data?.copyright ?? `© ${year} ${brandLabel}. ${messages.common?.allRightsReserved ?? ''}`}</p>
|
|
134
|
+
<p className="inline-flex items-center gap-1.5">
|
|
135
|
+
<IconShield size={16} />
|
|
136
|
+
{t.securePayments}
|
|
137
|
+
</p>
|
|
138
|
+
</div>
|
|
139
|
+
</div>
|
|
140
|
+
</footer>
|
|
141
|
+
);
|
|
142
|
+
}
|