contact us page

This commit is contained in:
James Shiffer 2020-06-12 02:09:51 -07:00
parent e149d11e59
commit 52df994d40
2 changed files with 48 additions and 3 deletions

View File

@ -8,7 +8,7 @@
font-weight: bold; font-weight: bold;
padding: 1rem 0 0 0; padding: 1rem 0 0 0;
position: fixed; position: fixed;
width: 100vw; width: 100%;
z-index: 100; z-index: 100;
background-color: #fff; background-color: #fff;
top: 0; top: 0;
@ -45,6 +45,7 @@
} }
div.link a { div.link a {
font-size: 2rem !important; font-size: 2rem !important;
margin-left: 4rem;
} }
} }
</style> </style>
@ -54,10 +55,9 @@
<div><a href="/"><img class="wordmark" src="/logo.png" alt="HowFeed.biz"></a></div> <div><a href="/"><img class="wordmark" src="/logo.png" alt="HowFeed.biz"></a></div>
<div class="filler"></div> <div class="filler"></div>
{#if !$session.user} {#if !$session.user}
<div class="link"><a href="mailto:the_katze@naver.com">Contact Us</a></div> <div class="link"><a href="/contact">Contact Us</a></div>
{:else} {:else}
<div class="link"><a href="/cms">Dashboard</a></div> <div class="link"><a href="/cms">Dashboard</a></div>
<div class="filler"></div>
<div class="link"><a href="/cms/logout">Logout</a></div> <div class="link"><a href="/cms/logout">Logout</a></div>
{/if} {/if}
</div> </div>

45
src/routes/contact.svelte Normal file
View File

@ -0,0 +1,45 @@
<svelte:head>
<title>Contact Us | HOWFEED.BIZ</title>
</svelte:head>
<style>
div.people {
display: flex;
flex-wrap: wrap;
}
div.people > div {
flex: 1 0 0;
}
</style>
<div class="content">
<h1>Contact Us</h1>
<div class="people">
<div>
<h3>Myles C. Linden</h3>
<p>Creative Operations Director</p>
<p>FemboyFinancial Holdings Co., Ltd. (USA LLC)</p>
<address>
1198 South 6th Street<br>
Suite J<br>
San Jose, CA 95112
</address>
<p><a href="tel:+19257658478">(925) 765-8478</a></p>
</div>
<div>
<h3>Vincent M. Iannelli</h3>
<p>Creative Operations Director</p>
<p>FemboyFinancial Holdings Co., Ltd. (USA LLC)</p>
<p><a href="tel:+19258134360">(925) 813-4360</a></p>
</div>
<div>
<h3>James N. Shiffer</h3>
<p>Webmaster</p>
<p>FemboyFinancial Holdings Co., Ltd. (USA LLC)</p>
<p><a href="mailto:webmaster@femboyfashion.com.hk">webmaster@femboyfashion.com.hk</a></p>
</div>
</div>
<div style="max-width:100%;list-style:none; transition: none;overflow:hidden;width:500px;height:500px;">
<iframe style="height:100%;width:100%;border:0;" frameborder="0" src="https://www.google.com/maps/embed/v1/place?q=1198+S+Sixth+St&key=AIzaSyBFw0Qbyq9zTFTd-tUY6dZWTgaQzuU17R8"></iframe>
</div>
</div>