soames-gatsby-theme
Version:
A customizable Gatsby theme for personal websites using WordPress as a headless CMS.
12 lines (11 loc) • 2.17 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const FooterMenu_1 = __importDefault(require("./FooterMenu"));
const Footer = ({ title }) => {
return ((0, jsx_runtime_1.jsx)("section", { className: "soames-footer mt-5", children: (0, jsx_runtime_1.jsx)("div", { className: "container", children: (0, jsx_runtime_1.jsxs)("div", { className: "media-container-row content text-white", children: [(0, jsx_runtime_1.jsx)("div", { className: "col-12 col-md-2", children: (0, jsx_runtime_1.jsx)("div", { className: "media-wrap", children: ` ` }) }), (0, jsx_runtime_1.jsxs)("div", { className: "col-12 col-md-4 mbr-fonts-style display-7", children: [(0, jsx_runtime_1.jsx)("h5", { className: "pb-3", children: "Links" }), (0, jsx_runtime_1.jsx)(FooterMenu_1.default, {})] }), (0, jsx_runtime_1.jsxs)("div", { className: "col-12 col-md-4 mbr-fonts-style display-7", children: [(0, jsx_runtime_1.jsx)("h5", { className: "pb-3", children: "Contact" }), (0, jsx_runtime_1.jsx)("p", { className: "soames-text pr-3", children: "fritz followed by ASCII 0x40 followed by the domain name of this site." }), (0, jsx_runtime_1.jsxs)("p", { className: "soames-text pt-3", children: ["\u00A9 ", new Date().getFullYear(), " ", title, (0, jsx_runtime_1.jsx)("br", {}), "Built with", " ", (0, jsx_runtime_1.jsx)("a", { href: "https://www.soames.app", target: "_blank", rel: "noreferrer", children: "Soames" }), ",", " ", (0, jsx_runtime_1.jsx)("a", { href: "https://www.gatsbyjs.com", target: "_blank", rel: "noreferrer", children: "Gatsby" }), ", and", " ", (0, jsx_runtime_1.jsx)("a", { href: "https://wordpress.org/", target: "_blank", rel: "noreferrer", children: "WordPress" }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("br", {})] })] }), (0, jsx_runtime_1.jsx)("div", { className: "col-12 col-md-2 mbr-fonts-style display-7", children: (0, jsx_runtime_1.jsx)("h5", { className: "pb-3", children: ` ` }) })] }) }) }));
};
exports.default = Footer;