Skip to content

Commit

Permalink
Add more information for about page and search for contact
Browse files Browse the repository at this point in the history
  • Loading branch information
ddxv committed Oct 28, 2024
1 parent 77e8b5e commit b554b00
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 36 deletions.
4 changes: 2 additions & 2 deletions frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
rel="noreferrer"
>
<div class="inline-flex items-center">
{@html githubIcon}
{@html githubIcon} GitHub
</div>
</a>
<a
Expand All @@ -103,7 +103,7 @@
rel="noreferrer"
>
<div class="inline-flex items-center">
{@html discordIcon}
{@html discordIcon} Discord
</div>
</a>
{/snippet}
Expand Down
67 changes: 35 additions & 32 deletions frontend/src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,36 @@

<div class="p-2 px-8 md:px-32 lg:px-72">
<h1 class="h1">Thanks for checking out this project</h1>

<br />

<div class="card p-2 md:p-8">
<h3 class="h3 p-2 md:p-4">Background</h3>
<h2 class="h2 p-2 md:p-4">Marketing Community & Feedback</h2>
<div class="p-4">
<p>
Join our Discord community to discuss app marketing strategies, share AppGoblin product
ideas, or get feedback from fellow developers.
</p>

<br />
<a
class="btn btn-sm variant-ghost-surface"
href="https://discord.gg/7jpWEhkXRW"
target="_blank"
rel="noreferrer"
>
<p>Join AppGoblin Discord</p>
<div class="inline-flex items-center">
{@html discordIcon}
</div>
</a>
<br />
</div>
</div>

<br />
<div class="card p-2 md:p-8">
<h2 class="h2 p-2 md:p-4">Background</h2>
<div class="p-4">
<p>
Originally this came out of a curiosity I had about the IAB app-ads.txt standard in 2022. In
Expand Down Expand Up @@ -77,38 +104,8 @@
</div>
<br />

<div class="card p-2 md:p-8">
<h3 class="h3 p-2 md:p-4">Marketing Community & Feedback</h3>
<div class="p-4">
<p>
I'm happy to help brainstorm if you're looking to do marketing or advertising for iOS or
Android. Additionally, I'd love to keep working on features for Android and iOS app
marketers. Feel free to join my AppGoblin Discord channel to chat ideas.
</p>
<a
class="btn btn-sm variant-ghost-surface"
href="https://discord.gg/7jpWEhkXRW"
target="_blank"
rel="noreferrer"
>
<p>Chat on Discord</p>
<div class="inline-flex items-center">
{@html discordIcon}
</div>
</a>
<br />
<br />
<br />
You can also reach me personally:
<a href="https://jamesoclaire.com">
<p>https://jamesoclaire.com</p>
</a>
</div>
</div>
<br />

<div class="card p-2 md:p-4">
<h3 class="h3 p-2 md:p-4">Open Source Tech Stack</h3>
<h2 class="h2 p-2 md:p-4">Open Source Tech Stack</h2>
<div class="p-2 md:p-4">
<p>
First is the underlying data which is collected and maintained from <strong
Expand All @@ -128,6 +125,12 @@
for CSS. All projects are glued together with systemd and websockets where needed. Everything
is hosted on AWS in the small EC2 instances.
</p>

<br />
You can also reach me personally:
<a href="https://jamesoclaire.com">
<p>https://jamesoclaire.com</p>
</a>
</div>
</div>
</div>
8 changes: 6 additions & 2 deletions frontend/src/routes/search/[term]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
{#if companiesResults.length > 0}
<CompaniesOverviewTable entries_table={companiesResults} />
{:else}
<h3 class="h3 p-4">No companies found, please try your search again.</h3>
<h3 class="h3 p-4">
No adtech/business/ development tool companies found, if you expected to see something
please let us know by sending a note on Discord or GitHub and we can add it.
</h3>
{/if}
{:else}
<p>Search failed please try again ...</p>
Expand All @@ -64,7 +67,8 @@
<div class="card p-4 mt-4">
<h3 class="h3">Didn't see what you're looking for?</h3>
<p class="p-2">
Try searching on Google Play. Results may take a couple minutes to be live on AppGoblin.
Try searching on Google Play. Results will take an hour to be live on AppGoblin. If you
still don't see what you're looking for please reach out on GitHub or Discord.
</p>
<card class="card variant-glass-surface p-4">
<button class="btn variant-filled-primary p-2" onclick={searchGooglePlay}>
Expand Down

0 comments on commit b554b00

Please sign in to comment.