* refactor: extract hooks * refactor: naming * refactor: naming * refactor: domain karpeta atontzen du * fix: og image konpontzen du * refactor: move component * refactor: move component * refactor: move component * refactor: move component
22 lines
574 B
TypeScript
22 lines
574 B
TypeScript
import React from 'react';
|
|
|
|
import { PageProps } from 'gatsby';
|
|
|
|
import { SEO } from '../components/SEO';
|
|
import { usePribatutasunPolitikaContent } from '../domain/basicPage/hooks/usePribatutasunPolitikaContent';
|
|
import { RegularPage } from '../views/RegularPage/RegularPage';
|
|
|
|
const PribatutasunPolitika: React.FC<PageProps> = ({ location }) => {
|
|
const content = usePribatutasunPolitikaContent();
|
|
|
|
return (
|
|
<>
|
|
<SEO title={content.izenburua} location={location} />
|
|
|
|
<RegularPage content={content} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default PribatutasunPolitika;
|