diff options
| author | Bobby <[email protected]> | 2025-05-12 18:59:23 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-05-12 18:59:23 +0530 |
| commit | 5dba2d8cedf46798fc197de4856409124a65ce4e (patch) | |
| tree | db78fc28529fea672e31d0de27524b64ab904ed5 /src/components/RightSidebarComponent.astro | |
| parent | c21c55fc1c5f262943f99fc4f0f343ed49d18f33 (diff) | |
| download | pagoda-5dba2d8cedf46798fc197de4856409124a65ce4e.tar.xz pagoda-5dba2d8cedf46798fc197de4856409124a65ce4e.zip | |
added sidebar and related components
Diffstat (limited to 'src/components/RightSidebarComponent.astro')
| -rw-r--r-- | src/components/RightSidebarComponent.astro | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/RightSidebarComponent.astro b/src/components/RightSidebarComponent.astro new file mode 100644 index 0000000..1a19686 --- /dev/null +++ b/src/components/RightSidebarComponent.astro @@ -0,0 +1,19 @@ +--- +import SearchComponent from './SearchComponent.astro'; +import RightNavigationComponent from './RightNavigationComponent.astro'; +import RightNavigationComponentLink from './RightNavigationComponentLink.astro'; +--- + +<aside class="w-1/6"> + <img src="/images/internal/search.webp" alt="Search Image" class="h-32 mt-4 relative ml-20 pointer-events-none select-none" /> + <SearchComponent /> + <RightNavigationComponent title="Pagoda Services"> + <RightNavigationComponentLink href="/services/ad">Advertisement</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/blogs">Blogs</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/comments">Comments</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/counter">Counter</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/guestbook">Guestbook</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/journals">Journals</RightNavigationComponentLink> + <RightNavigationComponentLink href="/services/webring">Webring</RightNavigationComponentLink> + </RightNavigationComponent> +</aside>
\ No newline at end of file |
