21 lines
961 B
JavaScript
21 lines
961 B
JavaScript
class RightSidebarContent extends HTMLElement {
|
||
constructor() {
|
||
super();
|
||
}
|
||
|
||
connectedCallback() {
|
||
this.innerHTML = `
|
||
<h2>About</h2>
|
||
<p><em>A Summer’s End — Hong Kong 1986</em> is a visual novel set in 1980s Hong Kong. It tells of a love story between two women. Lush and vibrant visuals, the game features over 400 unique hand-drawn artwork inspired by Asian cinema and 1980s anime.</p>
|
||
<h3>Links</h3>
|
||
<ul>
|
||
<li><a href="https://www.asummersend.com/" target="_blank">Official Website</a>
|
||
</li>
|
||
<li><a href="https://store.steampowered.com/app/1111370/A_Summers_End__Hong_Kong_1986/" target="_blank">Steam</a></li>
|
||
<li><a href="https://oracleandbone.itch.io/a-summers-end" target="_blank">itch.io</a></li>
|
||
</ul>
|
||
`;
|
||
}
|
||
}
|
||
|
||
customElements.define('right-sidebar-component', RightSidebarContent); |