File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import type { Metadata } from "next" ;
2+
3+ export const metadata : Metadata = {
4+ title : "Início" ,
5+ } ;
6+
7+ export default function HomeLayout ( {
8+ children,
9+ } : Readonly < {
10+ children : React . ReactNode ;
11+ } > ) {
12+ return (
13+ < >
14+ { children }
15+ </ >
16+ ) ;
17+ }
File renamed without changes.
Original file line number Diff line number Diff line change 1+ import { Metadata } from 'next' ;
2+
3+ export const metadata : Metadata = {
4+ title : '100Nossão' ,
5+ } ;
6+
7+ export default function CemNossaoLayout ( {
8+ children,
9+ } : Readonly < {
10+ children : React . ReactNode ;
11+ } > ) {
12+ return (
13+ < >
14+ { children }
15+ </ >
16+ ) ;
17+ }
Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ const bricolageGrotesque = Bricolage_Grotesque({
1010} ) ;
1111
1212export const metadata : Metadata = {
13- title : "AAACEC" ,
13+ title : {
14+ default : "AAACEC" ,
15+ template : "%s | AAACEC" ,
16+ } ,
1417 description : "Site oficial da Associação Atlética Acadêmica da Ciência e Engenharia de Computação" ,
1518} ;
1619
Original file line number Diff line number Diff line change 1+ import type { Metadata } from "next" ;
2+
3+ export const metadata : Metadata = {
4+ title : "Sobre" ,
5+ } ;
6+
7+ export default function SobreLayout ( {
8+ children,
9+ } : Readonly < {
10+ children : React . ReactNode ;
11+ } > ) {
12+ return (
13+ < >
14+ { children }
15+ </ >
16+ ) ;
17+ }
You can’t perform that action at this time.
0 commit comments