1// Test the nested <Head> component is rendered during SSR. 2import Head from 'expo-router/head'; 3import EvilIcons from '@expo/vector-icons/EvilIcons'; 4import { loadAsync } from 'expo-font'; 5import React from 'react'; 6import { Text } from 'react-native'; 7 8export default function Page() { 9 // Ensure this font is loaded on this page only. 10 loadAsync(EvilIcons.font); 11 12 return ( 13 <> 14 <Head> 15 <title>About | Website</title> 16 <meta name="description" content="About page" /> 17 </Head> 18 <Text testID="content">About</Text> 19 </> 20 ); 21} 22