From 4c7b77dbead3c2bebdb15a5626dde6a460f48f96 Mon Sep 17 00:00:00 2001
From: John Lewis
Date: Wed, 28 Feb 2024 12:58:26 -0600
Subject: [PATCH] fix: corrected site-wide meta
---
crates/site-app/src/lib.rs | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/crates/site-app/src/lib.rs b/crates/site-app/src/lib.rs
index d6fce5c..98512ee 100644
--- a/crates/site-app/src/lib.rs
+++ b/crates/site-app/src/lib.rs
@@ -16,7 +16,6 @@ use crate::{
#[component]
pub fn App() -> impl IntoView {
- // dummy change
// Provides context that manages stylesheets, titles, meta tags, etc.
provide_meta_context();
@@ -24,8 +23,14 @@ pub fn App() -> impl IntoView {
- // sets the document title
-
+
+
+ // set the metadata
+
+
+
+
+
// content for this welcome page
impl IntoView {
outside_errors.insert_with_default_key(AppError::NotFound);
view! { }.into_view()
}>
-