Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
bates64 committed Jul 18, 2024
1 parent c374716 commit 3a9fcd8
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 22 deletions.
35 changes: 28 additions & 7 deletions packages/astro-theme/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,32 +28,50 @@ const sections: Section[] = [
{ text: "Cheerp", href: "https://cheerp.io" },
{ text: "CheerpJ", href: "https://cheerpj.com" },
{ text: "CheerpX", href: "https://cheerpx.io" },
{ text: "CheerpX for Flash", href: "https://leaningtech.com/cheerpx-for-flash" },
{
text: "CheerpX for Flash",
href: "https://leaningtech.com/cheerpx-for-flash",
},
],
},
{
name: "Browser extensions",
links: [
{ text: "CheerpJ Applet Runner", href: "https://cheerpj.com/cheerpj-applet-runner/" },
{ text: "CheerpJ JNLP Runner", href: "https://cheerpj.com/cheerpj-jnlp-runner/" },
{
text: "CheerpJ Applet Runner",
href: "https://cheerpj.com/cheerpj-applet-runner/",
},
{
text: "CheerpJ JNLP Runner",
href: "https://cheerpj.com/cheerpj-jnlp-runner/",
},
],
},
{
name: "Resources",
links: [
{ text: "Documentation", href: "https://labs.leaningtech.com/#ecosystem" },
{
text: "Documentation",
href: "https://labs.leaningtech.com/#ecosystem",
},
{ text: "Blog", href: "https://labs.leaningtech.com/blog" },
{ text: "GitHub", href: "https://github.com/leaningtech" },
{ text: "Contributing", href: "https://labs.leaningtech.com/docs/contributing" },
{
text: "Contributing",
href: "https://labs.leaningtech.com/docs/contributing",
},
],
},
{
name: "Company",
links: [
{ text: "About us", href: "https://leaningtech.com/about-us/" },
{ text: "News", href: "https://leaningtech.com/news/" },
{ text: "Partner program", href: "https://leaningtech.com/partner-programs/" },
{
text: "Partner program",
href: "https://leaningtech.com/partner-programs/",
},
{
text: "Privacy policy",
href: "https://leaningtech.com/privacy-policy/",
Expand All @@ -72,7 +90,10 @@ const sections: Section[] = [
class="grid sm:grid-cols-1 lg:grid-cols-[auto_1fr_1fr] gap-14 place-content-between text-lg"
>
<div class="flex justify-between gap-6 lg:flex-col">
<a class="inline-block hover:opacity-90 col-span-2" href="https://leaningtech.com">
<a
class="inline-block hover:opacity-90 col-span-2"
href="https://leaningtech.com"
>
<Image
src={logotype}
loading="lazy"
Expand Down
5 changes: 3 additions & 2 deletions packages/cheerpj-applet-page/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import screenshots from "./assets/afterapply.png";
Unleash the power of CheerpJ in an easy-to-use browser extension!
</p>
<p class="text-xl mt-8 text-stone-300 leading-7">
Activate and run Java applets effortlessly on any website without the need for traditional Java plugins, enhancing compatibility and user experience.
Activate and run Java applets effortlessly on any website without the
need for traditional Java plugins, enhancing compatibility and user
experience.
</p>
<div class="mt-8 flex flex-wrap gap-4">
<LinkButton
Expand Down Expand Up @@ -53,7 +55,6 @@ import screenshots from "./assets/afterapply.png";
class="mt-40"
src={AppletGear}
alt="Applet Applet logo enclosed by gears"

/>
</div>
</div>
Expand Down
8 changes: 2 additions & 6 deletions sites/cheerp/public/.well-known/assetlinks.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
[
{
"relation": [
"lookalikes/allowlist"
],
"relation": ["lookalikes/allowlist"],
"target": {
"namespace": "web",
"site": "https://cheerp.io"
}
},
{
"relation": [
"lookalikes/allowlist"
],
"relation": ["lookalikes/allowlist"],
"target": {
"namespace": "web",
"site": "https://cheerpx.io"
Expand Down
8 changes: 2 additions & 6 deletions sites/cheerpx/public/.well-known/assetlinks.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
[
{
"relation": [
"lookalikes/allowlist"
],
"relation": ["lookalikes/allowlist"],
"target": {
"namespace": "web",
"site": "https://cheerp.io"
}
},
{
"relation": [
"lookalikes/allowlist"
],
"relation": ["lookalikes/allowlist"],
"target": {
"namespace": "web",
"site": "https://cheerpx.io"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Run a Java applet
description: Run a java applet in modern browsers
---

import LinkButton from "../../../../components/LinkButton.astro";
import LinkButton from "@leaningtech/astro-theme/components/LinkButton.astro";

CheerpJ can run Java applets in the browser seamlessly. This page will help you getting started with CheerpJ for Java applets.

Expand Down

0 comments on commit 3a9fcd8

Please sign in to comment.