Initial commit — BCW Bricks Builder Starter Kit

14 templates for Bricks Builder 2.x: 9 sections, 3 headers, 2 footers.
Verified import format against Bricks 2.2 exports.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 16:30:14 -06:00
commit bb7e1483ae
15 changed files with 1533 additions and 0 deletions

137
footers/footer-columns.json Normal file
View File

@@ -0,0 +1,137 @@
{
"title": "BCW — Footer Columns",
"type": "footer",
"templateType": "footer",
"footer": [
{
"id": "sec001",
"name": "section",
"parent": 0,
"children": ["con001"],
"settings": [],
"label": "Footer Columns"
},
{
"id": "con001",
"name": "container",
"parent": "sec001",
"children": ["con002", "con003", "con004"],
"settings": {
"_direction": "row",
"_alignItems": "flex-start",
"_justifyContent": "space-between",
"_gap": "48px"
}
},
{
"id": "con002",
"name": "container",
"parent": "con001",
"children": ["log001", "txt001"],
"settings": {
"_direction": "column",
"_alignItems": "flex-start",
"_gap": "16px"
},
"label": "About Column"
},
{
"id": "log001",
"name": "logo",
"parent": "con002",
"children": [],
"settings": {
"_padding": {
"bottom": "15"
}
}
},
{
"id": "txt001",
"name": "text-basic",
"parent": "con002",
"children": [],
"settings": {
"text": "A short description of your company and what makes you different. One or two sentences is ideal."
}
},
{
"id": "con003",
"name": "container",
"parent": "con001",
"children": ["hdg001", "nav001"],
"settings": {
"_direction": "column",
"_alignItems": "flex-start",
"_gap": "16px"
},
"label": "Links Column"
},
{
"id": "hdg001",
"name": "heading",
"parent": "con003",
"children": [],
"settings": {
"tag": "h4",
"text": "Quick Links"
}
},
{
"id": "nav001",
"name": "nav-menu",
"parent": "con003",
"children": [],
"settings": []
},
{
"id": "con004",
"name": "container",
"parent": "con001",
"children": ["hdg002", "txt002", "txt003", "txt004"],
"settings": {
"_direction": "column",
"_alignItems": "flex-start",
"_gap": "12px"
},
"label": "Contact Column"
},
{
"id": "hdg002",
"name": "heading",
"parent": "con004",
"children": [],
"settings": {
"tag": "h4",
"text": "Contact"
}
},
{
"id": "txt002",
"name": "text-basic",
"parent": "con004",
"children": [],
"settings": {
"text": "123 Your Street, City, State 00000"
}
},
{
"id": "txt003",
"name": "text-basic",
"parent": "con004",
"children": [],
"settings": {
"text": "(555) 000-0000"
}
},
{
"id": "txt004",
"name": "text-basic",
"parent": "con004",
"children": [],
"settings": {
"text": "hello@yourcompany.com"
}
}
]
}

View File

@@ -0,0 +1,55 @@
{
"title": "BCW — Footer Minimal",
"type": "footer",
"templateType": "footer",
"footer": [
{
"id": "sec001",
"name": "section",
"parent": 0,
"children": ["con001"],
"settings": [],
"label": "Footer Minimal"
},
{
"id": "con001",
"name": "container",
"parent": "sec001",
"children": ["log001", "nav001", "txt001"],
"settings": {
"_direction": "row",
"_alignItems": "center",
"_justifyContent": "space-between",
"_gap": "24px"
}
},
{
"id": "log001",
"name": "logo",
"parent": "con001",
"children": [],
"settings": {
"_padding": {
"bottom": "15"
}
}
},
{
"id": "nav001",
"name": "nav-menu",
"parent": "con001",
"children": [],
"settings": []
},
{
"id": "txt001",
"name": "text-basic",
"parent": "con001",
"children": [],
"settings": {
"text": "© 2026 Your Company. All rights reserved."
}
}
]
}