use crate::error_template::{AppError, ErrorTemplate};
//use crate::routes::{blog::*, home::*, projects::*};
use leptos::*;
use leptos_meta::*;
use leptos_router::*;
pub mod error_template;
pub mod components;
pub mod routes;
use crate::routes::{home::*, blog::*, projects::*};
#[component]
pub fn App() -> impl IntoView {
// Provides context that manages stylesheets, titles, meta tags, etc.
provide_meta_context();
view! {