diff options
Diffstat (limited to 'examples/ssr')
-rw-r--r-- | examples/ssr/src/pages/cart.astro | 2 | ||||
-rw-r--r-- | examples/ssr/src/pages/index.astro | 2 | ||||
-rw-r--r-- | examples/ssr/src/pages/login.astro | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/ssr/src/pages/cart.astro b/examples/ssr/src/pages/cart.astro index ca0f934a4..68286ac61 100644 --- a/examples/ssr/src/pages/cart.astro +++ b/examples/ssr/src/pages/cart.astro @@ -14,7 +14,7 @@ const user = { name: 'test' }; // getUser? const cart = await getCart(Astro.request); --- -<html> +<html lang="en"> <head> <title>Cart | Online Store</title> <style> diff --git a/examples/ssr/src/pages/index.astro b/examples/ssr/src/pages/index.astro index 8f985e5b4..23a4c2721 100644 --- a/examples/ssr/src/pages/index.astro +++ b/examples/ssr/src/pages/index.astro @@ -8,7 +8,7 @@ import '../styles/common.css'; const products = await getProducts(Astro.request); --- -<html> +<html lang="en"> <head> <title>Online Store</title> <style> diff --git a/examples/ssr/src/pages/login.astro b/examples/ssr/src/pages/login.astro index 77955012b..1b3cb9ede 100644 --- a/examples/ssr/src/pages/login.astro +++ b/examples/ssr/src/pages/login.astro @@ -3,7 +3,7 @@ import Header from '../components/Header.astro'; import Container from '../components/Container.astro'; --- -<html> +<html lang="en"> <head> <title>Online Store</title> <style> |