+
+
+ - Hancarved jewellery loved and produced by
+ - Bricabracomania Metalworks
+ - 2020
+
+
+
+
+
+
+
+
+
+
diff --git a/brc_static/css/lightbox.css b/brc_static/css/lightbox.css
new file mode 100644
index 0000000..b3b0beb
--- /dev/null
+++ b/brc_static/css/lightbox.css
@@ -0,0 +1,204 @@
+body.lb-disable-scrolling {
+ overflow: hidden;
+}
+
+.lightboxOverlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 9999;
+ background-color: black;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+ display: none;
+}
+
+.lightbox {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ z-index: 10000;
+ text-align: center;
+ line-height: 0;
+ font-weight: normal;
+ outline: none;
+}
+
+.lightbox .lb-image {
+ display: block;
+ height: auto;
+ max-width: inherit;
+ max-height: none;
+ border-radius: 3px;
+
+ /* Image border */
+ border: 4px solid white;
+}
+
+.lightbox a img {
+ border: none;
+}
+
+.lb-outerContainer {
+ position: relative;
+ *zoom: 1;
+ width: 250px;
+ height: 250px;
+ margin: 0 auto;
+ border-radius: 4px;
+
+ /* Background color behind image.
+ This is visible during transitions. */
+ background-color: white;
+}
+
+.lb-outerContainer:after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+.lb-loader {
+ position: absolute;
+ top: 43%;
+ left: 0;
+ height: 25%;
+ width: 100%;
+ text-align: center;
+ line-height: 0;
+}
+
+.lb-cancel {
+ display: block;
+ width: 32px;
+ height: 32px;
+ margin: 0 auto;
+ background: url(../images/loading.gif) no-repeat;
+}
+
+.lb-nav {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+ z-index: 10;
+}
+
+.lb-container > .nav {
+ left: 0;
+}
+
+.lb-nav a {
+ outline: none;
+ background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
+}
+
+.lb-prev, .lb-next {
+ height: 100%;
+ cursor: pointer;
+ display: block;
+}
+
+.lb-nav a.lb-prev {
+ width: 34%;
+ left: 0;
+ float: left;
+ background: url(../images/prev.png) left 48% no-repeat;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0;
+ -webkit-transition: opacity 0.6s;
+ -moz-transition: opacity 0.6s;
+ -o-transition: opacity 0.6s;
+ transition: opacity 0.6s;
+}
+
+.lb-nav a.lb-prev:hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+
+.lb-nav a.lb-next {
+ width: 64%;
+ right: 0;
+ float: right;
+ background: url(../images/next.png) right 48% no-repeat;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
+ opacity: 0;
+ -webkit-transition: opacity 0.6s;
+ -moz-transition: opacity 0.6s;
+ -o-transition: opacity 0.6s;
+ transition: opacity 0.6s;
+}
+
+.lb-nav a.lb-next:hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+
+.lb-dataContainer {
+ margin: 0 auto;
+ padding-top: 5px;
+ *zoom: 1;
+ width: 100%;
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+
+.lb-dataContainer:after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+.lb-data {
+ padding: 0 4px;
+ color: #ccc;
+}
+
+.lb-data .lb-details {
+ width: 85%;
+ float: left;
+ text-align: left;
+ line-height: 1.1em;
+}
+
+.lb-data .lb-caption {
+ font-size: 13px;
+ font-weight: bold;
+ line-height: 1em;
+}
+
+.lb-data .lb-caption a {
+ color: #4ae;
+}
+
+.lb-data .lb-number {
+ display: block;
+ clear: left;
+ padding-bottom: 1em;
+ font-size: 12px;
+ color: #999999;
+}
+
+.lb-data .lb-close {
+ display: block;
+ float: right;
+ width: 30px;
+ height: 30px;
+ background: url(../images/close.png) top right no-repeat;
+ text-align: right;
+ outline: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+ -webkit-transition: opacity 0.2s;
+ -moz-transition: opacity 0.2s;
+ -o-transition: opacity 0.2s;
+ transition: opacity 0.2s;
+}
+
+.lb-data .lb-close:hover {
+ cursor: pointer;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
diff --git a/brc_static/css/styles.css b/brc_static/css/styles.css
new file mode 100644
index 0000000..cc57990
--- /dev/null
+++ b/brc_static/css/styles.css
@@ -0,0 +1,584 @@
+@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,700,900");
+@import url("stylesheet.css");
+
+* {
+ box-sizing: border-box;
+ transition: all ease-in-out 250ms;
+}
+
+body {
+ margin: 0;
+ font-family: "dominican_small_capsregular";
+ text-align: center;
+}
+
+img {
+ max-width: 100%;
+}
+
+.images {
+ filter: grayscale(100%);
+ transition: height 0.5s ease-out, filter 0.3s ease 0.5s, width 0.3s ease-out;
+ height: 200px;
+ width: 200px;
+ cursor:pointer;
+}
+
+.images:hover {
+ -webkit-filter: grayscale(0%);
+ filter: grayscale(0%);
+ transition: filter 0.8s ease-out;
+}
+
+.container {
+ margin: 0 auto;
+}
+
+.clearfix::after,
+section::after,
+footer::after {
+ content: "";
+ display: block;
+ clear: both;
+}
+
+video {
+ width: 100%;
+ height: auto;
+ }
+
+/* Column system
+=================== */
+
+[class^="col-"] {
+ width: 100%;
+ margin-top: 1em;
+}
+
+[class^="col-"]:first-child {
+ margin-top: 0;
+}
+
+.col-1 {
+ width: 33.333334%;
+ float: left;
+}
+
+@media (min-width: 40rem) {
+ [class^="col-"] {
+ float: left;
+ padding: 0 0.5em;
+ margin-top: 0;
+ }
+
+ [class^="col-"]:first-child {
+ padding-left: 0;
+ }
+
+ [class^="col-"]:last-child {
+ padding-right: 0;
+ }
+
+ .col-3 {
+ width: 50%;
+ }
+
+ .col-1 {
+ width: 16.6666%;
+ }
+}
+
+.column {
+ float: left;
+ width: 33.33%;
+ display: none; /* Hide all elements by default */
+ }
+
+.row {
+ margin: 10px -16px;
+ }
+
+
+.row,
+.row > .column {
+ padding: 0.8px;
+}
+
+.row:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+
+.show {
+ display: block;
+ }
+
+/* typography
+=================== */
+
+h1 {
+ font-weight: 300;
+ font-size: 1.7rem;
+ margin-top: 0;
+}
+
+
+p {
+ margin-top: 0;
+ line-height: 1.5;
+}
+
+.p1 {
+ color: #fff;
+ padding-top: 20px;
+ padding-right: 100px;
+ padding-bottom: 20px;
+ padding-left: 100px;
+}
+
+p:last-of-type {
+ margin-bottom: 0;
+}
+
+.title {
+ font-size: 2.5rem;
+ margin-bottom: 1.5em;
+ font-weight: 900;
+ margin-top: 1em;
+}
+
+.title span {
+ font-weight: 300;
+ display: block;
+ font-size: 0.9em;
+}
+
+.title-cta {
+ margin: 0 0 0.5em;
+}
+
+.unstyled-list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+}
+
+@media (min-width: 60rem) {
+ p {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ }
+
+ .title {
+ font-size: 3.7rem;
+ }
+}
+
+/* buttons */
+
+.button {
+ display: inline-block;
+ font-size: 1.15rem;
+ text-decoration: none;
+ text-transform: uppercase;
+ border-width: 2px;
+ border-style: solid;
+ padding: 0.5em 1.75em;
+}
+
+@media (min-width: 60rem) {
+ .button {
+ font-size: 1.5rem;
+ }
+}
+
+.button.active {
+ background-color: #ffffff;
+ color: #232323;
+ }
+
+.button-small {
+ font-size: 0.7rem;
+ font-weight: 700;
+}
+
+.button-accent {
+ color: #ffffff;
+ border-color: #ffffff;
+ cursor:pointer
+}
+
+.button-accent:hover,
+.button-accent:focus {
+ background: #ffffff;
+ color: #232323;
+}
+
+.button-dark {
+ color: #232323;
+ border-color: #232323;
+}
+
+.button-dark:hover,
+.button-dark:focus {
+ background: #232323;
+ color: #ffffff;
+}
+
+.btn {
+ /* border: none;
+ outline: none;
+ padding: 12px 16px; */
+ background-color: white;
+ cursor: pointer;
+ display: inline-block;
+ font-size: 1.15rem;
+ text-decoration: none;
+ text-transform: uppercase;
+ border-width: 2px;
+ border-style: solid;
+ padding: 0.5em 1.75em;
+ }
+
+ .btn:hover {
+ background-color: #ddd;
+ }
+
+ .btn.active {
+ background-color: #666;
+ color: white;
+ }
+
+/* Parallax
+=================== */
+
+.parallax--bg {
+ width: auto;
+}
+/* header
+=================== */
+
+header {
+ margin: 1rem 0;
+}
+
+.nav ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+.nav li {
+ display: inline-block;
+ margin: 1em;
+}
+
+.nav a {
+ font-weight: 900;
+ text-decoration: none;
+ padding: 0.5em;
+ text-transform: uppercase;
+ color: white;
+ font-size: 0.8rem;
+}
+
+
+.nav a:hover,
+.nav a:focus {
+ color: #ddd;
+}
+
+.logo {
+ margin-top: 0.5rem;
+}
+
+/* hero-home
+=================== */
+
+.home-hero {
+ background-image: url(../img/hero-bg.jpg);
+ background-size: cover;
+ background-position: center;
+ padding: 10em 0;
+ color: #fff;
+}
+
+@media (min-width: 60rem) {
+ .home-hero {
+ height: 100vh;
+ padding-top: 35vh;
+ }
+}
+
+/* hero-home
+=================== */
+
+.home-about-textbox {
+ background-color: #232323;
+ padding: 10em 20%;
+ width: 100%;
+ outline: 2px solid#ffffff;
+ outline-offset: -2.5em;
+ color: #fff;
+ position: relative;
+}
+
+.home-about-textbox h1 {
+ color: #ffffff;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ top: 0.75em;
+ background: #232323;
+ padding: 0 0.145em;
+}
+
+@media (min-width: 25rem) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .home-about-textbox h1 {
+ top: 0.6em;
+ }
+}
+
+@media (min-width: 60rem) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .home-about {
+ background-repeat: no-repeat;
+ }
+
+ .home-about-textbox {
+ width: 100%;
+ outline-offset: -3.75em;
+ /* margin-left: -2.5%; */
+ text-align: left;
+ box-shadow: 0 0 4em 0 rgba(0, 0, 0, 0.3);
+ }
+
+ .home-about-textbox h1 {
+ top: 0.75em;
+ left: 6rem;
+ transform: translateX(0);
+ }
+}
+
+/* portfolio
+=================== */
+
+/* .portfolio {
+ margin: 3em 0 0;
+} */
+
+.port-item {
+ margin: 0;
+ position: relative;
+}
+
+.port-item img {
+ display: block;
+}
+
+.port-desc {
+ position: absolute;
+ z-index: 100;
+ bottom: 0em;
+ left: 0em;
+ right: 0em;
+ color: white;
+ background: rgba(0, 0, 0, 0.6);
+ padding-bottom: 2em;
+}
+
+.port-desc p {
+ margin: 1em;
+}
+
+@media (min-width: 37rem) {
+ .port-item {
+ width: 50%;
+ float: left;
+ }
+}
+
+@media (min-width: 60rem) {
+ .port-item {
+ width: 33.3333334%;
+ overflow: hidden;
+ }
+
+ .port-desc {
+ transform: translateY(150%);
+ }
+
+ .port-item:hover .port-desc {
+ transform: translateY(0%);
+ }
+}
+
+/* display flex */
+
+.pointer {
+ cursor: pointer;}
+
+.gallery-container {
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.gallery-item {
+ width: 50%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+@media screen and (max-width: 1000px) {
+ .gallery-item {
+ width: 100%;
+ }
+}
+
+/* Contact
+=================== */
+.contact-bg {
+ align-items: center;
+ background: url('../img/who-we-are.jpg');
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ display: flex;
+ justify-content: center;
+}
+
+.contact-info {
+ background: #80808090;
+ margin: 25vmin 0;
+ padding: 1.5rem;
+}
+
+@media screen and (max-width: 1000px) {
+ .contact-info h2 {
+ font-size: 14px;
+ }
+}
+
+.gallery-description {
+ display: none;
+}
+
+.modal-gallery-all {
+ display: none;
+ flex-direction: column;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 1;
+ padding: 20px;
+ background-color: rgba(0, 0, 0, 0.8);
+ cursor:pointer;
+}
+
+.modal-gallery-txt-img-container {
+ max-height: 100%;
+ overflow-y: auto;
+ height: fit-content;
+ margin: auto;
+}
+
+.modal-gallery-all-container {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ height: fit-content;
+ margin: auto;
+ cursor:pointer;
+}
+
+.modal-all-img {
+ width: 260px;
+ max-width: 90%;
+ margin: 20px;
+}
+
+.modal-gallery {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 2;
+ padding: 15% 0;
+ background-color: rgba(0, 0, 0, 0.8);
+}
+
+.modal-gallery-outer-cont {
+ margin: auto;
+ display: flex;
+ flex-direction: column;
+}
+
+.modal-gallery-container {
+ display: flex;
+ justify-content: center;
+}
+
+.modal-gallery-image {
+ max-width: 80%;
+}
+
+.modal-gallery-button-prev {
+ visibility: hidden;
+ pointer-events: none;
+ margin: auto 20px;
+ padding: 10px;
+}
+
+.modal-gallery-button-prev:hover {
+ cursor: pointer;
+}
+
+.modal-gallery-button-next {
+ margin: auto 20px;
+ padding: 10px;
+}
+
+.modal-gallery-button-next:hover {
+ cursor: pointer;
+}
+
+.modal-gallery-close {
+ margin-left: auto;
+}
+
+.modal-gallery-close:hover {
+ cursor: pointer;
+}
+
+/* CTA
+=================== */
+
+.cta {
+ background-color: #ffffff;
+ padding: 5em 0;
+}
+
+/* Footer
+=================== */
+
+footer {
+ background: #232323;
+ color: #fff;
+ text-align: left;
+ padding: 5em 0;
+}
+body { background-color: #eee; }
+
diff --git a/brc_static/css/stylesheet.css b/brc_static/css/stylesheet.css
new file mode 100644
index 0000000..2c0c8e8
--- /dev/null
+++ b/brc_static/css/stylesheet.css
@@ -0,0 +1,25 @@
+/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on June 17, 2020 */
+
+@font-face {
+ font-family: "dominican_italicregular";
+ src: url("../fonts/domii___-webfont.woff2") format("woff2"),
+ url("../fonts/domii___-webfont.woff") format("woff");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "dominicanregular";
+ src: url("../fonts/dominica-webfont.woff2") format("woff2"),
+ url("../fonts/dominica-webfont.woff") format("woff");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "dominican_small_capsregular";
+ src: url("../fonts/domisc__-webfont.woff2") format("woff2"),
+ url("../fonts/domisc__-webfont.woff") format("woff");
+ font-weight: normal;
+ font-style: normal;
+}
diff --git a/brc_static/fonts/domii___-webfont.woff b/brc_static/fonts/domii___-webfont.woff
new file mode 100644
index 0000000..08d448d
Binary files /dev/null and b/brc_static/fonts/domii___-webfont.woff differ
diff --git a/brc_static/fonts/domii___-webfont.woff2 b/brc_static/fonts/domii___-webfont.woff2
new file mode 100644
index 0000000..5182e9f
Binary files /dev/null and b/brc_static/fonts/domii___-webfont.woff2 differ
diff --git a/brc_static/fonts/dominica-webfont.woff b/brc_static/fonts/dominica-webfont.woff
new file mode 100644
index 0000000..ea0eef3
Binary files /dev/null and b/brc_static/fonts/dominica-webfont.woff differ
diff --git a/brc_static/fonts/dominica-webfont.woff2 b/brc_static/fonts/dominica-webfont.woff2
new file mode 100644
index 0000000..e994523
Binary files /dev/null and b/brc_static/fonts/dominica-webfont.woff2 differ
diff --git a/brc_static/fonts/domisc__-webfont.woff b/brc_static/fonts/domisc__-webfont.woff
new file mode 100644
index 0000000..130cef8
Binary files /dev/null and b/brc_static/fonts/domisc__-webfont.woff differ
diff --git a/brc_static/fonts/domisc__-webfont.woff2 b/brc_static/fonts/domisc__-webfont.woff2
new file mode 100644
index 0000000..7532b94
Binary files /dev/null and b/brc_static/fonts/domisc__-webfont.woff2 differ
diff --git a/brc_static/fonts/generator_config.txt b/brc_static/fonts/generator_config.txt
new file mode 100644
index 0000000..81e64f6
--- /dev/null
+++ b/brc_static/fonts/generator_config.txt
@@ -0,0 +1,5 @@
+# Font Squirrel Font-face Generator Configuration File
+# Upload this file to the generator to recreate the settings
+# you used to create these fonts.
+
+{"mode":"optimal","formats":["woff","woff2"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
\ No newline at end of file
diff --git a/brc_static/images/close.png b/brc_static/images/close.png
new file mode 100644
index 0000000..20baa1d
Binary files /dev/null and b/brc_static/images/close.png differ
diff --git a/brc_static/images/etsy.png b/brc_static/images/etsy.png
new file mode 100644
index 0000000..47d40fc
Binary files /dev/null and b/brc_static/images/etsy.png differ
diff --git a/brc_static/images/fb.png b/brc_static/images/fb.png
new file mode 100644
index 0000000..609df57
Binary files /dev/null and b/brc_static/images/fb.png differ
diff --git a/brc_static/images/instagram.png b/brc_static/images/instagram.png
new file mode 100644
index 0000000..5317631
Binary files /dev/null and b/brc_static/images/instagram.png differ
diff --git a/brc_static/images/loading.gif b/brc_static/images/loading.gif
new file mode 100644
index 0000000..5087c2a
Binary files /dev/null and b/brc_static/images/loading.gif differ
diff --git a/brc_static/images/next.png b/brc_static/images/next.png
new file mode 100644
index 0000000..08365ac
Binary files /dev/null and b/brc_static/images/next.png differ
diff --git a/brc_static/images/prev.png b/brc_static/images/prev.png
new file mode 100644
index 0000000..329fa98
Binary files /dev/null and b/brc_static/images/prev.png differ
diff --git a/brc_static/img/hero-bg.jpg b/brc_static/img/hero-bg.jpg
new file mode 100644
index 0000000..7e39f04
Binary files /dev/null and b/brc_static/img/hero-bg.jpg differ
diff --git a/brc_static/img/logo.png b/brc_static/img/logo.png
new file mode 100644
index 0000000..8f320cb
Binary files /dev/null and b/brc_static/img/logo.png differ
diff --git a/brc_static/img/myicon.png b/brc_static/img/myicon.png
new file mode 100644
index 0000000..daee354
Binary files /dev/null and b/brc_static/img/myicon.png differ
diff --git a/brc_static/img/portfolio-01.jpg b/brc_static/img/portfolio-01.jpg
new file mode 100644
index 0000000..51fe974
Binary files /dev/null and b/brc_static/img/portfolio-01.jpg differ
diff --git a/brc_static/img/portfolio-02.jpg b/brc_static/img/portfolio-02.jpg
new file mode 100644
index 0000000..2ae718c
Binary files /dev/null and b/brc_static/img/portfolio-02.jpg differ
diff --git a/brc_static/img/portfolio-03.jpg b/brc_static/img/portfolio-03.jpg
new file mode 100644
index 0000000..13f2993
Binary files /dev/null and b/brc_static/img/portfolio-03.jpg differ
diff --git a/brc_static/img/portfolio-04.jpg b/brc_static/img/portfolio-04.jpg
new file mode 100644
index 0000000..a77f9bc
Binary files /dev/null and b/brc_static/img/portfolio-04.jpg differ
diff --git a/brc_static/img/portfolio-05.jpg b/brc_static/img/portfolio-05.jpg
new file mode 100644
index 0000000..b9fe670
Binary files /dev/null and b/brc_static/img/portfolio-05.jpg differ
diff --git a/brc_static/img/projects-bg.jpg b/brc_static/img/projects-bg.jpg
new file mode 100644
index 0000000..eed41f2
Binary files /dev/null and b/brc_static/img/projects-bg.jpg differ
diff --git a/brc_static/img/projects/amanita.jpg b/brc_static/img/projects/amanita.jpg
new file mode 100644
index 0000000..365ef8f
Binary files /dev/null and b/brc_static/img/projects/amanita.jpg differ
diff --git a/brc_static/img/projects/diretmus-argenteus.jpg b/brc_static/img/projects/diretmus-argenteus.jpg
new file mode 100644
index 0000000..07d5b6a
Binary files /dev/null and b/brc_static/img/projects/diretmus-argenteus.jpg differ
diff --git a/brc_static/img/projects/pics/tell_tale_heart.png b/brc_static/img/projects/pics/tell_tale_heart.png
new file mode 100644
index 0000000..226c9c1
Binary files /dev/null and b/brc_static/img/projects/pics/tell_tale_heart.png differ
diff --git a/brc_static/img/projects/pics/tell_tale_hearts (1).png b/brc_static/img/projects/pics/tell_tale_hearts (1).png
new file mode 100644
index 0000000..4606985
Binary files /dev/null and b/brc_static/img/projects/pics/tell_tale_hearts (1).png differ
diff --git a/brc_static/img/projects/pics/tell_tale_hearts (2).png b/brc_static/img/projects/pics/tell_tale_hearts (2).png
new file mode 100644
index 0000000..9aa61e8
Binary files /dev/null and b/brc_static/img/projects/pics/tell_tale_hearts (2).png differ
diff --git a/brc_static/img/projects/pics/tell_tale_hearts (3).png b/brc_static/img/projects/pics/tell_tale_hearts (3).png
new file mode 100644
index 0000000..1769c65
Binary files /dev/null and b/brc_static/img/projects/pics/tell_tale_hearts (3).png differ
diff --git a/brc_static/img/projects/psathyrella-gracilis.jpg b/brc_static/img/projects/psathyrella-gracilis.jpg
new file mode 100644
index 0000000..b729b57
Binary files /dev/null and b/brc_static/img/projects/psathyrella-gracilis.jpg differ
diff --git a/brc_static/img/projects/teeth-ring.jpg b/brc_static/img/projects/teeth-ring.jpg
new file mode 100644
index 0000000..686b8a8
Binary files /dev/null and b/brc_static/img/projects/teeth-ring.jpg differ
diff --git a/brc_static/img/projects/tell-tale.jpg b/brc_static/img/projects/tell-tale.jpg
new file mode 100644
index 0000000..65be6f2
Binary files /dev/null and b/brc_static/img/projects/tell-tale.jpg differ
diff --git a/brc_static/img/title.png b/brc_static/img/title.png
new file mode 100644
index 0000000..b791e15
Binary files /dev/null and b/brc_static/img/title.png differ
diff --git a/brc_static/img/who-we-are.jpg b/brc_static/img/who-we-are.jpg
new file mode 100644
index 0000000..e6434a3
Binary files /dev/null and b/brc_static/img/who-we-are.jpg differ
diff --git a/brc_static/index.html b/brc_static/index.html
new file mode 100644
index 0000000..4663d4d
--- /dev/null
+++ b/brc_static/index.html
@@ -0,0 +1,155 @@
+
+
+
+
+
+
bricabracomania.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Who we are
+
Bricabracomania metalworks is home of antique-inspired, alternative jewelry with an obscure, sculptural twist.
+
Every design is created with passion and devotion in the best traditions of wax carving by hand, experimenting with forms and textures, as well as unconventional material combinations and patinas.
+
We celebrate statement pieces, bold designs and mix of eras – from classical forms of ancient Rome to intricate details of Victorian memorabilia. Inspired by legends, religious motives and the occult, pirate tales and cabinets of curiosities, these creations are meant to become life companions and talismans for their owners.
+
+
+
+
+
+
+
+
+
+
+
Order your piece now!
+
+
Order
+
+
+
+
Check out our instagram page
+
+
+
+