-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* the navigation header css * changed some navigation rendering code to be more qwik * removed working code from front page * the open is closed when loading * mobile menu has multiple columns * balanced the menu for mobile views. fixed 404 message to shared componenet.
- Loading branch information
1 parent
270d3ed
commit c084618
Showing
7 changed files
with
39 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import ImgMissingLink from '/public/images/missing-link.jpg?jsx'; | ||
import Notes from '~/components/template/notes' | ||
import { component$ } from "@builder.io/qwik"; | ||
|
||
export default component$(() => { | ||
return <> | ||
<Notes title='You Found the Missing Link'> | ||
This page seems to have gone the way of the dodo (or maybe just the yeti). But fret not, intrepid explorer, the [birdseye-view](/docs/birdseye-view/) or [getting-started](/docs/getting-started/) might have the answers you're searching for. | ||
</Notes> | ||
<div class="w-100% flex justify-items-center"> | ||
<ImgMissingLink class="mx-auto w-64 h-64 rounded-full" /> | ||
</div> | ||
<div class="border-t-2 mt-4 pt-5"> | ||
Click <a href="/">Home</a> to find your way back. | ||
</div> | ||
</> | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
import ImgMissingLink from '/public/images/missing-link.jpg?jsx'; | ||
import Notes from '~/components/template/notes' | ||
import Message from '~/components/template/404-message' | ||
|
||
<Notes title='You Found the Missing Link'> | ||
This page seems to have gone the way of the dodo (or maybe just the yeti). But fret not, intrepid explorer, the [birdseye-view](/docs/birdseye-view/) or [getting-started](/docs/getting-started/) might have the answers you're searching for. | ||
</Notes> | ||
<div class="w-100% flex justify-items-center"> | ||
<ImgMissingLink class="mx-auto w-64 h-64 rounded-full" /> | ||
</div> | ||
|
||
--- | ||
|
||
Click [Home](/) to find your way back. | ||
<Message /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
import ImgMissingLink from '/public/images/missing-link.jpg?jsx'; | ||
import Notes from '~/components/template/notes' | ||
import Message from '~/components/template/404-message' | ||
|
||
<Notes title='You Found the Missing Link'> | ||
This page seems to have gone the way of the dodo (or maybe just the yeti). But fret not, intrepid explorer, the [birdseye-view](/docs/birdseye-view/) or [getting-started](/docs/getting-started/) might have the answers you're searching for. | ||
</Notes> | ||
<div class="w-100% flex justify-items-center"> | ||
<ImgMissingLink class="mx-auto w-64 h-64 rounded-full" /> | ||
</div> | ||
|
||
--- | ||
|
||
Click [Home](/) to find your way back. | ||
<Message /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Warning from '~/components/template/warning' | ||
|
||
# Testing Tools | ||
|
||
<Warning title="Under Construction" > | ||
This page is under construction and may contain incomplete or incorrect information. | ||
</Warning> | ||
|
||
--- | ||
|
||
Next Section: [Building Method Binders](/docs/building-method-binders/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters