7 |
8 |
13 |
Next.js
14 |
15 |
16 |
17 | Modern JavaScript Framework: hybrid static & server rendering, TypeScript
18 | support, smart bundling, route pre-fetching...
19 |
20 |
21 |
22 | {sns.map(({ href, icon, label }) => (
23 |
24 |
25 | {icon}
26 |
27 |
28 | ))}
29 |
30 |
31 | );
32 |
--------------------------------------------------------------------------------
/src/components/features/app/Footer/Footer.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from '@/components/common/Link';
2 | import { ContentLayout } from '@/components/features/app/Layout';
3 | import { SITE_NAME } from '@/config/app';
4 | import { sns } from '@/config/sns';
5 |
6 | export const Footer = () => {
7 | return (
8 |