1// Test the nested <Head> component is rendered during SSR.
2import Head from 'expo-router/head';
3import React from 'react';
4import { Text } from 'react-native';
5
6export default function Page() {
7  return (
8    <>
9      <Head>
10        <title>About | Website</title>
11        <meta name="description" content="About page" />
12      </Head>
13      <Text testID="content">About</Text>
14    </>
15  );
16}
17