-
Notifications
You must be signed in to change notification settings - Fork 22
/
site.ts
48 lines (42 loc) · 1.14 KB
/
site.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { FooterNavItem, LinkItem } from "@/lib/types";
import { Linkedin, Slack } from "lucide-react";
export const links: LinkItem[] = [
{ id: 0, name: "Articles", to: "/articles" },
{ id: 1, name: "About", to: "/about" },
// { id: 3, name: "Search", to: "/search" },
];
export const siteData = {
title: 'Analytics Roundtable',
author: 'Analytics Roundtable',
headerTitle: 'Analytics Roundtable',
profileUrl: '/logo.svg',
headerDescription: 'Open Community for Data Professionals',
footerText: '© All rights reserved',
language: 'en-us',
locale: 'en-US',
websiteUrl: 'analyticsroundtable.com',
};
export const footerNavigation: FooterNavItem[] = [
// {
// name: "GitHub",
// href: "/",
// icon: Github,
// },
// {
// name: "Twitter",
// href: "/",
// icon: Twitter,
// },
{
name: "Slack",
href: "https://join.slack.com/t/analytics-roundtable/shared_invite/zt-1m5vonbd3-4~ZRqbz_sO4iWrn691DhwA",
icon: Slack,
},
{
name: "Linkedin",
href: "https://www.linkedin.com/groups/13904163/",
icon: Linkedin,
},
];
export const postsPerPage = 5;
export const email = "[email protected]";