Skip to content

Commit e0a97b9

Browse files
committed
refactor: update PizziFooter transform, update research metadata, and adjust layout styles
- Removed bun.lockb file. - Adjusted transform property in PizziFooter.vue for better positioning. - Updated publication status in research-3.md from "Conditionally Accepted" to "Forthcoming". - Added flex-grow property in default.vue to improve layout behavior. - Reordered modules in nuxt.config.ts for better organization and changed 'hid' to 'id' for description meta tag. - Updated package.json dependencies for eslint, nuxt, vue, vue-router, @nuxt/content, @nuxt/fonts, motion-v, and sass-embedded. - Added padding to coauthors class in research.vue for improved spacing.
1 parent ea1566a commit e0a97b9

File tree

8 files changed

+2820
-12
lines changed

8 files changed

+2820
-12
lines changed

bun.lock

Lines changed: 2801 additions & 0 deletions
Large diffs are not rendered by default.

bun.lockb

-485 KB
Binary file not shown.

components/PizziFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ footer {
116116
117117
.index & {
118118
@media all and (min-width: 769px) {
119-
transform: translate3d(56vw, 51vw, 0);
119+
transform: translate3d(56vw, 50vw, 0);
120120
position: absolute;
121121
}
122122
}

content/research/research-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ coauthors:
1717
date: "2024-12-25"
1818
type: "Publications"
1919
infos:
20-
- info: "_Conditionally Accepted_ at **American Economic Journal: Applied Economics**."
20+
- info: "_Forthcoming_ at **American Economic Journal: Applied Economics**."
2121
---
2222

2323
How do strengthened church-state relations impact religiosity and social values? To examine, we exploit the staggered introduction of the faith-based initiatives across US states. Introduced by conservative Protestants in the 1990s, these policies aimed to improve conditions for faith-based groups and increase their numbers. Our difference-in-differences analysis reveals that the initiatives increased the number of faith-based nonprofits and strengthened religiosity and conservative-religious social views — such as attitudes against LGBTQ+ and abortion. 9% of Americans who were not regular churchgoers started attending monthly or more. A back-of-the-envelope calculation suggests that the faith-based organizations established as a result of the initiatives may have reached 4.9 million followers yearly. Effects are plausibly causal; we find no systematic differences prior to implementation, evidence is robust to using novel staggered roll-out designs, restricting comparison to contiguous counties, and to estimation based on triple differences exploiting religious group heterogeneity. Effects were only felt by Protestants, while the rest continued to secularize and modernize. Our results contribute to explaining US polarization and highlight consequences of tightened church-state relations.

layouts/default.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ onMounted(() => {
6565
justify-content: center;
6666
align-items: center;
6767
padding-bottom: 0;
68+
flex-grow: 0;
6869
}
6970
}
7071

nuxt.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://nuxt.com/docs/api/configuration/nuxt-config
22
export default defineNuxtConfig({
3-
modules: ['@nuxt/content', 'motion-v/nuxt', 'nuxt-gtag', '@nuxtjs/sitemap', '@nuxt/fonts', '@nuxt/image', '@nuxt/eslint', '@nuxtjs/mdc'],
3+
modules: ['@nuxtjs/sitemap', '@nuxt/content', 'motion-v/nuxt', 'nuxt-gtag', '@nuxt/fonts', '@nuxt/image', '@nuxt/eslint', '@nuxtjs/mdc'],
44
devtools: { enabled: true },
55
app: {
66
head: {
@@ -18,7 +18,7 @@ export default defineNuxtConfig({
1818
`alessandro pizzigolotto, economics, phd, microeconomics, culture, household finance, political economy, institutions, econometrics`,
1919
},
2020
{
21-
hid: 'description',
21+
id: 'description',
2222
name: 'description',
2323
content: 'Alessandro Pizzigolotto\'s AcademicWebsite',
2424
},

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
"@nuxt/image": "1.10.0",
1717
"@nuxtjs/mdc": "0.16.1",
1818
"@nuxtjs/sitemap": "7.2.9",
19-
"eslint": "^9.23.0",
20-
"nuxt": "^3.16.1",
19+
"eslint": "^9.27.0",
20+
"framer-motion": "^12.12.1",
21+
"motion-dom": "^12.12.1",
22+
"nuxt": "^3.17.4",
2123
"nuxt-gtag": "3.0.2",
22-
"vue": "^3.5.13",
23-
"vue-router": "^4.5.0"
24+
"vue": "^3.5.14",
25+
"vue-router": "^4.5.1"
2426
},
2527
"devDependencies": {
26-
"@nuxt/content": "^3.4.0",
27-
"@nuxt/fonts": "^0.11.0",
28+
"@nuxt/content": "^3.5.1",
29+
"@nuxt/fonts": "^0.11.4",
2830
"@types/animejs": "^3.1.13",
2931
"animejs": "^3.2.2",
30-
"motion-v": "^0.13.1",
32+
"motion-v": "^1.1.0-alpha.1",
3133
"normalize-scss": "^8.0.0",
32-
"sass-embedded": "^1.86.0"
34+
"sass-embedded": "^1.89.0"
3335
}
3436
}

pages/research.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,10 @@ onMounted(() => {
184184
}
185185
}
186186
187+
.coauthors {
188+
padding-top: 0.5vw;
189+
}
190+
187191
.links {
188192
display: flex;
189193
flex-direction: row;

0 commit comments

Comments
 (0)