@ashawnbandy/resume-landing
Version:
Resume landing page web components.
16 lines (15 loc) • 619 B
JavaScript
export class ResumeLanding {
render() {
return ([
h("section", null,
h("img", { class: "logo", src: "assets/landing/software-developer-logo-night.svg" })),
h("header", null,
h("span", { class: "logo" },
h("img", { src: 'assets/landing/run-shawn-run-arrow.svg' })),
h("slot", { name: "header-items" }))
]);
}
static get is() { return "resume-landing"; }
static get encapsulation() { return "shadow"; }
static get style() { return "/**style-placeholder:resume-landing:**/"; }
}